file path containing multibyte characters causes an error
Brought to you by:
yegappan
I was getting an error message: "Taglist: Failed to generate tags for ..."
I made a small patch below, but only tested on Windows XP...
--- taglist.vim.orig 2007-09-21 18:11:20.000000000 +0900
+++ taglist.vim 2007-12-17 16:15:37.720151400 +0900
@@ -2276,7 +2276,7 @@
let s:taglist_tempfile = fnamemodify(tempname(), ':h') .
\ '\taglist.cmd'
exe 'redir! > ' . s:taglist_tempfile
- silent echo ctags_cmd
+ silent echon ctags_cmd
redir END
call s:Tlist_Log_Msg('Cmd inside batch file: ' . ctags_cmd)