bpowell / vim-android

Vim plugin to do android development.
183 stars 19 forks source link

This fails on some Linux distros because of ctags and ctags-exuberant being incompatible #11

Closed daniel-levin closed 11 years ago

daniel-levin commented 11 years ago

If you get the error:

ctags: unrecognized option '--recurse'

then you should change (in android-install.sh):

if ! ctags --recurse --langmap=Java:.java --languages=Java --verbose -f ~/.vim/tags $ANDROID_SDK/sources 

to if ! ctags-exuberant --recurse --langmap=Java:.java --languages=Java --verbose -f ~/.vim/tags $ANDROID_SDK/sources

This is because ctags usually points to exuberant-ctags but on some distros (such as Ubuntu) it points to etags instead.

bpowell commented 11 years ago

Thanks, I will look into changing it to make it more dynamic. I didn't know that ctags and ctags-exubreant are different.

bpowell commented 11 years ago

Fixed in 1e50fceafe56f8a9b905a8b2708f1c7ace4ed502