Mercurial > vim-gutentags
changeset 45:64de69ca7195
Fix undefined variable error caused by a missing rename.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 16 Mar 2015 07:04:03 -0700 |
parents | 1a853b37eddf |
children | c0f56e4d52bd 586c3a86adac |
files | autoload/gutentags/ctags.vim |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/autoload/gutentags/ctags.vim Fri Feb 20 14:37:11 2015 -0800 +++ b/autoload/gutentags/ctags.vim Mon Mar 16 07:04:03 2015 -0700 @@ -61,8 +61,8 @@ if g:gutentags_pause_after_update let l:cmd .= ' -c' endif - if len(g:gutentags_options_file) - let l:cmd .= ' -o "' . g:gutentags_options_file . '"' + if len(g:gutentags_ctags_options_file) + let l:cmd .= ' -o "' . g:gutentags_ctags_options_file . '"' endif if g:gutentags_trace if has('win32')