Browse Source

Fix ctags-exuberant script used by vim.

Emmanuel Bouthenot 13 năm trước cách đây
mục cha
commit
844681d2f0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      .vim/bin/ctags-exuberant

+ 1 - 1
.vim/bin/ctags-exuberant

@@ -1,6 +1,6 @@
 #!/bin/sh
 
-if which ctags-exuberant &>/dev/null; then
+if which ctags-exuberant >/dev/null 2>&1 ; then
     if echo $@|grep -- "--language-force=php" >/dev/null 2>&1 ; then
         ctags-exuberant $(echo $@ | sed 's/--language-force=php//' | sed 's/--php-types=[^ ]*//')
     else