Mercurial > vim-gutentags
changeset 122:3763e9f412e7
Merge pull request #78 from GitHub.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 13 Jun 2016 18:44:29 -0700 |
parents | 5776acb079cf (current diff) 8310e4602de9 (diff) |
children | e2a43c03da79 |
files | autoload/gutentags.vim |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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('%')