comparison autoload/gutentags.vim @ 56:fca5dc8c8022

call expand with 1 to turn off wildignore jic
author dnhgff <null@dnhgff.space>
date Tue, 28 Apr 2015 09:39:48 -0700
parents 96067ed08fb1
children f00ae5797e48
comparison
equal deleted inserted replaced
55:96067ed08fb1 56:fca5dc8c8022
96 endif 96 endif
97 97
98 " Try and find what tags file we should manage. 98 " Try and find what tags file we should manage.
99 call gutentags#trace("Scanning buffer '" . bufname('%') . "' for gutentags setup...") 99 call gutentags#trace("Scanning buffer '" . bufname('%') . "' for gutentags setup...")
100 try 100 try
101 let b:gutentags_root = gutentags#get_project_root(expand('%:p:h')) 101 let b:gutentags_root = gutentags#get_project_root(expand('%:p:h', 1))
102 if filereadable(b:gutentags_root . '/.notags') 102 if filereadable(b:gutentags_root . '/.notags')
103 call gutentags#trace("'notags' file found... no gutentags support.") 103 call gutentags#trace("'notags' file found... no gutentags support.")
104 return 104 return
105 endif 105 endif
106 106