From 23812212fbe4f5997c11fcbb73e3443763ac15b9 Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Tue, 6 May 2008 13:18:50 +0000 Subject: [PATCH] Fail silently if ctags isn't available. git-svn-id: https://svn.cambridge.iain.cx/profile/trunk@110 6be0d1a5-5cfe-0310-89b6-964be062b18b --- .vim/plugin/taglist.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.20.1