-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix detection of Universal Ctags #133
base: master
Are you sure you want to change the base?
Conversation
Recently Universal Ctags changed version from 'Development' to '0.0.0' which broke the detection.
This would be great! I too have this issue. |
Awesome, hope to see this upstream soon. |
Me too! because I need to use Universal Ctags to get support for C++11. |
I just experienced this problem installing this plugin for the first time. I was hoping it would just work with universal ctags since it has the same executable name and is based on exuberant ctags. But when my Neovim starts up it says
Seems like maybe it is too smart for it's own good and not checking the version would be less problematic. When I run
|
I just pointed my plugin manager to the commit from this pull request. I will let you know how it works for me. So far, it has allowed to me to at least start Neovim without the error message. |
@still-dreaming-1 how is it going? what plugin manager are you using? @xolox: this is a 👍 from another universal-ctags user |
@al3xandru Actually I got this working somehow, I forget how. After getting it working, I discovered this plugin actually has an option to disable checking the ctags version, which is a great workaround for this. After I got it working, I tried out the plugin and ended up not liking it. I forget why exactly I didn't like this particular plugin because I tried a bunch of different tags plugins and I didn't like any of them. I ended up making my own tags plugin: vim-project-tags. It is already past version 1 because I am using it with my own projects already and I'm getting a lot of usefulness out of it. |
Thanks for the update @still-dreaming-1. I'll check out your plugin too (I currently switched to guttentags hoping this PR will be accepted). I'll look again for the version check flag, but I don't remember seeing it. |
@al3xandru Here is the option I was thinking of: |
Thanks @still-dreaming-1. I was heading here to post about |
Is there a reason this hasn't been merged yet? |
looks like this project is not maintained any more |
fork, fork, fork, fork, fork |
Wasn't able to apply the contents of this patch directly, but here's an updated patch file from a fresh clone. Just run
|
original project is not updated, pull request with fix is not being merged: xolox/vim-easytags#133
Recently Universal Ctags changed version from 'Development' to '0.0.0'
which broke the detection.
I have changed the detection to explicitly test for Universal Ctags and in that case ignore the version.
This should fix #132