# HG changeset patch # User Daniel Hahler # Date 1459962498 -7200 # Node ID 8310e4602de93306c6e163e1a09a5728ad33886c # Parent df3b0ca480139292e5a6524d264889cc045d0a07 minor: fix typos / unbalanced quotes diff -r df3b0ca48013 -r 8310e4602de9 autoload/gutentags.vim --- a/autoload/gutentags.vim Fri Mar 25 20:41:38 2016 -0700 +++ b/autoload/gutentags.vim Wed Apr 06 19:08:18 2016 +0200 @@ -119,7 +119,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, '/\-', '/', '') @@ -159,7 +159,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 @@ -185,7 +185,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('%')