Support space and comma paths with tags
This commit is contained in:
parent
e674a7e2f3
commit
c2569c5de4
@ -144,10 +144,10 @@ function! s:Detect(path)
|
|||||||
if expand('%:p') =~# '//'
|
if expand('%:p') =~# '//'
|
||||||
call buffer.setvar('&path',s:sub(buffer.getvar('&path'),'^\.%(,|$)',''))
|
call buffer.setvar('&path',s:sub(buffer.getvar('&path'),'^\.%(,|$)',''))
|
||||||
endif
|
endif
|
||||||
if b:git_dir !~# ',' && stridx(buffer.getvar('&tags'),b:git_dir.'/tags') == -1
|
if stridx(buffer.getvar('&tags'),escape(b:git_dir.'/tags',', ')) == -1
|
||||||
call buffer.setvar('&tags',b:git_dir.'/tags'.','.buffer.getvar('&tags'))
|
call buffer.setvar('&tags',escape(b:git_dir.'/tags',', ').','.buffer.getvar('&tags'))
|
||||||
if &filetype != ''
|
if &filetype != ''
|
||||||
call buffer.setvar('&tags',b:git_dir.'/'.&filetype.'.tags'.','.buffer.getvar('&tags'))
|
call buffer.setvar('&tags',escape(b:git_dir.'/'.&filetype.'.tags',', ').','.buffer.getvar('&tags'))
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user