From eea8f41b9e04b8b533d1670a1090b16255f9b5f2 Mon Sep 17 00:00:00 2001 From: Peter Odding Date: Wed, 11 Aug 2010 20:44:10 +0200 Subject: Fix automatic ctags detection on FreeBSD (reported by Derek Tattersall) --- easytags.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easytags.vim b/easytags.vim index cdbcd49..ce6f48c 100644 --- a/easytags.vim +++ b/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.1.3 +" Version: 2.1.4 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip @@ -59,7 +59,7 @@ function! s:InitEasyTags(version) " On Ubuntu Linux, Exuberant Ctags is installed as `ctags'. On Debian Linux, " Exuberant Ctags is installed as `exuberant-ctags'. On Free-BSD, Exuberant " Ctags is installed as `exctags'. - for name in ['ctags', 'exuberant-ctags', 'esctags'] + for name in ['ctags', 'exuberant-ctags', 'exctags'] if s:CheckCtags(name, a:version) let g:easytags_cmd = name return 1 -- cgit v1.2.3