Skip to content

Commit

Permalink
Fix automatic ctags detection on FreeBSD (reported by Derek Tattersall)
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Aug 11, 2010
1 parent 7b041bd commit eea8f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions easytags.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit eea8f41

Please sign in to comment.