# HG changeset patch # User Ludovic Chabant # Date 1465868669 25200 # Node ID 3763e9f412e757f9cd2e9e7b53b2930cf6de6478 # Parent 5776acb079cf83ac9e7b4b0a9bce967c5a2eafae# Parent 8310e4602de93306c6e163e1a09a5728ad33886c Merge pull request #78 from GitHub. diff -r 5776acb079cf -r 3763e9f412e7 autoload/gutentags.vim --- a/autoload/gutentags.vim Mon Jun 13 18:25:02 2016 -0700 +++ b/autoload/gutentags.vim Mon Jun 13 18:44:29 2016 -0700 @@ -128,7 +128,7 @@ let l:tag_path = gutentags#stripslash(a:root_dir) . '/' . a:filename if g:gutentags_cache_dir != "" " Put the tag file in the cache dir instead of inside the - " projet root. + " project root. let l:tag_path = g:gutentags_cache_dir . '/' . \tr(l:tag_path, '\/: ', '---_') let l:tag_path = substitute(l:tag_path, '/\-', '/', '') @@ -168,7 +168,7 @@ endif let b:gutentags_root = gutentags#get_project_root(l:buf_dir) if filereadable(b:gutentags_root . '/.notags') - call gutentags#trace("'notags' file found... no gutentags support.") + call gutentags#trace("'.notags' file found... no gutentags support.") return endif @@ -194,7 +194,7 @@ endtry " We know what tags file to manage! Now set things up. - call gutentags#trace("Setting gutentags for buffer '" . bufname('%')) + call gutentags#trace("Setting gutentags for buffer '".bufname('%')."'") " Autocommands for updating the tags on save. let l:bn = bufnr('%')