c0r73x / neotags.nvim

Tag highlight in neovim
MIT License
122 stars 9 forks source link

Fails to find module 'ctags' #1

Closed mhartington closed 8 years ago

mhartington commented 8 years ago

Looks like trying to call UpdateRemotePlugins throws an error.

Encountered ImportError loading plugin at /Users/mhartington/.config/nvim/.dein/rplugin/python3/neotags: No module named 'ctags'
Traceback (most recent call last):
  File "/usr/local/lib/python3.5/site-packages/neovim/plugin/host.py", line 132, in _load
    module = imp.load_module(name, file, pathname, descr)
  File "/usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/imp.py", line 244, in load_module
    return load_package(name, filename)
  File "/usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/imp.py", line 216, in load_package
    return _load(spec)
  File "<frozen importlib._bootstrap>", line 693, in _load
  File "<frozen importlib._bootstrap>", line 673, in _load_unlocked
ImportError: No module named 'ctags'

Seems there is no ctags module to import. Any ideas?

c0r73x commented 8 years ago

Can you try now, I removed that dependacy a minute ago :)

mhartington commented 8 years ago

heh, will try 😄

mhartington commented 8 years ago

Looks good!

c0r73x commented 8 years ago

I noticed a problem though, because i switched to use taglist() instead of parsing the ctags file neotags deadlocks the same way as easytags when opening large projects. I will try to fix it.