changeset 60:9e768b83d701

Fix missing renames of `gutentags_ctags_executable`.
author Ludovic Chabant <ludovic@chabant.com>
date Sat, 16 May 2015 21:51:17 -0700
parents 4cda41f830c3
children 735fce322ae4 547df6917df9 a14a788e3809
files autoload/gutentags/ctags.vim doc/gutentags.txt
diffstat 2 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/autoload/gutentags/ctags.vim	Tue May 05 21:49:00 2015 -0700
+++ b/autoload/gutentags/ctags.vim	Sat May 16 21:51:17 2015 -0700
@@ -3,7 +3,7 @@
 " Global Options {{{
 
 if !exists('g:gutentags_ctags_executable')
-    let g:gutentags_executable = 'ctags'
+    let g:gutentags_ctags_executable = 'ctags'
 endif
 
 if !exists('g:gutentags_tagfile')
@@ -41,7 +41,7 @@
     try
         " Build the command line.
         let l:cmd = gutentags#get_execute_cmd() . s:runner_exe
-        let l:cmd .= ' -e "' . g:gutentags_executable . '"'
+        let l:cmd .= ' -e "' . g:gutentags_ctags_executable . '"'
         let l:cmd .= ' -t "' . a:tags_file . '"'
         let l:cmd .= ' -p "' . a:proj_dir . '"'
         if a:write_mode == 0 && filereadable(a:tags_file)
--- a/doc/gutentags.txt	Tue May 05 21:49:00 2015 -0700
+++ b/doc/gutentags.txt	Sat May 16 21:51:17 2015 -0700
@@ -249,11 +249,11 @@
                                                 *gutentags_exclude*
 g:gutentags_exclude
                         A list of file patterns to pass to the
-                        |gutentags_executable| so that they will be excluded
-                        from parsing for the tags generation.
-                        Defaults to `[]` (an empty |List|).
-                        Patterns defined in 'wildignore' will also be given as
-                        exclude patterns to the `ctags` executable.
+                        |gutentags_ctags_executable| so that they will be
+                        excluded from parsing for the tags generation.
+                        Defaults to `[]` (an empty |List|).  Patterns defined
+                        in 'wildignore' will also be given as exclude patterns
+                        to the `ctags` executable.
 
                                                 *gutentags_auto_set_tags*
 g:gutentags_auto_set_tags