diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/easytags.vim | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 96155ae..c989783 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,6 +1,6 @@ " Vim plug-in " Author: Peter Odding <peter@peterodding.com> -" Last Change: June 26, 2011 +" Last Change: June 27, 2011 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) @@ -12,7 +12,7 @@ if &cp || exists('g:loaded_easytags') finish endif -let g:easytags_version = '2.4.7' +let g:easytags_version = '2.4.8' " Configuration defaults and initialization. {{{1 @@ -24,18 +24,10 @@ if !exists('g:easytags_file') endif endif -if !exists('g:easytags_dynamic_files') - let g:easytags_dynamic_files = 0 -endif - if !exists('g:easytags_by_filetype') let g:easytags_by_filetype = '' endif -if !exists('g:easytags_resolve_links') - let g:easytags_resolve_links = 0 -endif - if !exists('g:easytags_events') let g:easytags_events = [] if !exists('g:easytags_on_cursorhold') || g:easytags_on_cursorhold @@ -50,18 +42,6 @@ if !exists('g:easytags_ignored_filetypes') let g:easytags_ignored_filetypes = '^tex$' endif -if !exists('g:easytags_autorecurse') - let g:easytags_autorecurse = 0 -endif - -if !exists('g:easytags_include_members') - let g:easytags_include_members = 0 -endif - -if !exists('g:easytags_python_enabled') - let g:easytags_python_enabled = 1 -endif - if !exists('g:easytags_python_script') let g:easytags_python_script = expand('<sfile>:p:h') . '/../misc/easytags/highlight.py' endif |