From 6e279a38a9caa946251502f5d630d9c45b095689 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 19 Mar 2011 02:18:46 +0100 Subject: Add g:easytags_suppress_ctags_warning option When set and != 0 this will suppress the ctags warning on startup. --- plugin/easytags.vim | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'plugin') diff --git a/plugin/easytags.vim b/plugin/easytags.vim index 5aa4293..a0ba269 100644 --- a/plugin/easytags.vim +++ b/plugin/easytags.vim @@ -1,10 +1,10 @@ " Vim plug-in " Author: Peter Odding -" Last Change: March 15, 2011 +" Last Change: March 19, 2011 " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.2 +" Version: 2.2.1 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -100,6 +100,9 @@ function! s:VersionToNumber(s) endfunction if !s:InitEasyTags(55) + if exists('g:easytags_suppress_ctags_warning') && g:easytags_suppress_ctags_warning + finish + endif if !exists('g:easytags_ctags_version') || empty(g:easytags_ctags_version) let s:msg = "%s: Plug-in not loaded because Exuberant Ctags isn't installed!" if executable('apt-get') -- cgit v1.2.3