changeset 121:8310e4602de9

minor: fix typos / unbalanced quotes
author Daniel Hahler <git@thequod.de>
date Wed, 06 Apr 2016 19:08:18 +0200
parents df3b0ca48013
children 3763e9f412e7
files autoload/gutentags.vim
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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('%')