Mercurial > vim-gutentags
comparison autoload/gutentags/ctags.vim @ 257:81d51b4a2a78
The full path of update_tags.cmd should be quoted.
author | zoumi <zoumi@msn.com> |
---|---|
date | Sat, 30 Mar 2019 14:00:22 +0800 |
parents | 950647497ae5 |
children | 6030953258fe |
comparison
equal
deleted
inserted
replaced
256:950647497ae5 | 257:81d51b4a2a78 |
---|---|
34 " }}} | 34 " }}} |
35 | 35 |
36 " Gutentags Module Interface {{{ | 36 " Gutentags Module Interface {{{ |
37 | 37 |
38 let s:did_check_exe = 0 | 38 let s:did_check_exe = 0 |
39 let s:runner_exe = gutentags#get_plat_file('update_tags') | 39 let s:runner_exe = '"' . gutentags#get_plat_file('update_tags') . '"' |
40 let s:unix_redir = (&shellredir =~# '%s') ? &shellredir : &shellredir . ' %s' | 40 let s:unix_redir = (&shellredir =~# '%s') ? &shellredir : &shellredir . ' %s' |
41 let s:wildignores_options_path = '' | 41 let s:wildignores_options_path = '' |
42 let s:last_wildignores = '' | 42 let s:last_wildignores = '' |
43 | 43 |
44 function! gutentags#ctags#init(project_root) abort | 44 function! gutentags#ctags#init(project_root) abort |