aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Odding <peter@peterodding.com>2010-08-11 20:44:10 +0200
committerPeter Odding <peter@peterodding.com>2010-08-11 20:44:10 +0200
commiteea8f41b9e04b8b533d1670a1090b16255f9b5f2 (patch)
treeeaac226a589c11b99e1364eb04afa760c1156e0b
parent7b041bd0ae8c65e80c84d20727b1eafaf04327bd (diff)
downloadvim-easytags-eea8f41b9e04b8b533d1670a1090b16255f9b5f2.tar.gz
Fix automatic ctags detection on FreeBSD (reported by Derek Tattersall)
-rw-r--r--easytags.vim4
1 files 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