From: Iain Patterson Date: Tue, 6 May 2008 13:18:50 +0000 (+0000) Subject: Fail silently if ctags isn't available. X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=23812212fbe4f5997c11fcbb73e3443763ac15b9;p=profile.git Fail silently if ctags isn't available. git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@110 6be0d1a5-5cfe-0310-89b6-964be062b18b --- diff --git a/.vim/plugin/taglist.vim b/.vim/plugin/taglist.vim index 59901f6..f82e678 100644 --- a/.vim/plugin/taglist.vim +++ b/.vim/plugin/taglist.vim @@ -94,8 +94,8 @@ if !exists('loaded_taglist') elseif executable('tags') let Tlist_Ctags_Cmd = 'tags' else - echomsg 'Taglist: Exuberant ctags (http://ctags.sf.net) ' . - \ 'not found in PATH. Plugin is not loaded.' + "echomsg 'Taglist: Exuberant ctags (http://ctags.sf.net) ' . + " \ 'not found in PATH. Plugin is not loaded.' " Skip loading the plugin let loaded_taglist = 'no' let &cpo = s:cpo_save