# HG changeset patch # User Stephen Kent # Date 1469240701 25200 # Node ID 4c9e2de7d46ac0f0c15d664f7d5aadbffe2ea7f5 # Parent 04288637e5952f73c20526f5d0fbd9cff654308a Rename ctags.options to ctags_recursive.options According to https://github.com/ludovicchabant/vim-gutentags/issues/33, ctags' --recursive option was moved to an option file to allow it to be overridden by user options files. This change makes it clear what the purpose of this options file is. diff -r 04288637e595 -r 4c9e2de7d46a autoload/gutentags/ctags.vim --- a/autoload/gutentags/ctags.vim Thu Jul 21 00:41:23 2016 +0200 +++ b/autoload/gutentags/ctags.vim Fri Jul 22 19:25:01 2016 -0700 @@ -80,9 +80,9 @@ endif let l:cmd .= ' -s "' . l:cur_file_path . '"' endif - " Pass the Gutentags options file first, and then the project specific - " one, so that users can override the default behaviour. - let l:cmd .= ' -o "' . gutentags#get_res_file('ctags.options') . '"' + " Pass the Gutentags recursive options file before the project + " options file, so that users can override --recursive. + let l:cmd .= ' -o "' . gutentags#get_res_file('ctags_recursive.options') . '"' let l:proj_options_file = a:proj_dir . '/' . \g:gutentags_ctags_options_file if filereadable(l:proj_options_file) diff -r 04288637e595 -r 4c9e2de7d46a res/ctags.options --- a/res/ctags.options Thu Jul 21 00:41:23 2016 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ ---recurse=yes - diff -r 04288637e595 -r 4c9e2de7d46a res/ctags_recursive.options --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/res/ctags_recursive.options Fri Jul 22 19:25:01 2016 -0700 @@ -0,0 +1,2 @@ +--recurse=yes +