From 2e05e0ea8370f4f83163a3a6383476135445a463 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Mon, 27 Jun 2011 03:31:25 +0200 Subject: Support buffer local variants of most options --- plugin/easytags.vim | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) (limited to 'plugin/easytags.vim') 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 -" 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(':p:h') . '/../misc/easytags/highlight.py' endif -- cgit v1.2.3