Git Product home page Git Product logo

neotags.nvim's People

Contributors

c0r73x avatar haasn avatar lbartoletti avatar roflcopter4 avatar sauercrowd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

neotags.nvim's Issues

Invalid buffer id

NvimError(b'Invalid buffer id')
Traceback (most recent call last):
  File "/Users/henryoliver/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 140, in init
    self.update(False)
  File "/Users/henryoliver/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 181, in update
    self.__groups[ft] = self._parseTags(ft)
  File "/Users/henryoliver/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 372, in _parseTags
    self.__slurp = '\n'.join(self.__cur['buf'])
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/api/buffer.py", line 75, in __iter__
    lines = self[:]
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/api/buffer.py", line 48, in __getitem__
    return self.request('nvim_buf_get_lines', start, end, False)
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/api/common.py", line 51, in request
    return self._session.request(name, self, *args, **kwargs)
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/api/nvim.py", line 182, in request
    res = self._session.request(name, *args, **kwargs)
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/msgpack_rpc/session.py", line 102, in request
    raise self.error_wrapper(err)
pynvim.api.nvim.NvimError: b'Invalid buffer id'

the call was requested at
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/api/nvim.py", line 222, in filter_notification_cb
    notification_cb(name, args)
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/plugin/host.py", line 120, in _on_notification
    handler(*args)
  File "/Users/henryoliver/Library/Python/3.7/lib/python/site-packages/pynvim/plugin/host.py", line 82, in _wrap_function
    return fn(*args)
  File "/Users/henryoliver/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/__init__.py", line 20, in init
    self.__vim.async_call(self.__neotags.init)```

Error on startup

When I install I get the following on startup:

Error detected while processing VimEnter Auto commands for "*":
E117: Unknown function: NeotagsInit
Press ENTER or type command to continue

And this when I try and run :NeotagsToggle

E117: Unknown function: NeotagsToggle

Python deps loaded and puthon3 available in neovim.

$ pip3 list | grep neovim
neovim (0.2.0)
$ pip3 list | grep psutil
psutil (5.4.3)
:version
NVIM v0.2.0
Build type: RelWithDebInfo
Compilation: /usr/bin/x86_64-linux-gnu-gcc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DDISABLE_LOG -Wdate-time -D_FORTIFY_SOURCE=2
 -Wconversion -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -O2 -g -DDISABLE_LOG -Wall -Wextra -pedantic -Wno-unused-parameter -Wstrict-prototypes -std=gnu99 -Wvla -fstack-protector-strong -fdiagnost
ics-color=auto -DINCLUDE_GENERATED_DECLARATIONS -D_GNU_SOURCE -I/build/neovim-LpFVCC/neovim-0.2.0/build/config -I/build/neovim-LpFVCC/neovim-0.2.0/src -I/usr/include -I/usr/include -I/usr/inc
lude -I/usr/include -I/usr/include -I/usr/include -I/usr/include -I/build/neovim-LpFVCC/neovim-0.2.0/build/src/nvim/auto -I/build/neovim-LpFVCC/neovim-0.2.0/build/include
Compiled by [email protected]

Optional features included (+) or not (-): +acl   +iconv    +jemalloc +tui
For differences from Vim, see :help vim-differences

   system vimrc file: "$VIM/sysinit.vim"
  fall-back for $VIM: "/usr/share/nvim"

tagfiles() return an empty array

Neotags generate tags automatically and set tag file into tags variable. but when i echo tagfiles() it's return an empty array (using set tags? it's return tags=./tags;,tags,/tmp/nvim9khncX/75). Using command like :tag tagname neovim says No tags file.

Is i must generate ctags manually or using other plugin for generate ctags ?.
thanks before.

Fails to find module 'ctags'

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?

Disable/enable tags highlighting on the fly

Hello,

Would it be possible to enable/disable tags highlighting without restarting nvim? Tag highlighting is awesome but it makes vim deadly slow, I'd love to just enable it when i need.

Or maybe it can be done already?

Tags sometimes don't get highlighted until I force them to?

I'm not really sure how to debug this, or provide consistent or clear reproduction advice.

Sometimes I noticed that neotags simply doesn't highlight anything. Forcing it off and on again (:NeotagsToggle() twice) fixes it. As does switching to a different buffer and back (sometimes).

I use a lot of split buffers (:vsp etc.), maybe that has something to do with it?

I don't notice anything odd in :messages. I haven't had time to investigate this properly yet.

No HighLight

Today I'm trying to bring some better highlight on my neovim config. Because I really think that could help if this code was more readable:

#define FOO int

FOO test;

Class Foo2 {};

Foo2 test2;

I want to see FOO and Foo2 with some colors, and that's why I wanted to use [neotags][1] (so neotags should be able to resolve this right?)

So why even with let g:neotags_enabled = 1 and the tags file which is generated correctly (I can see define and class), I still don't have colors even when I remove every other plugins?

Neotags fails to start when installed with vim-plug

I have the python3 neovim and psutils packages installed, and I have installed Neotags using vim-plug. On vim startup, I get the message
Error detected while processing VimEnter Auto commands for "*": E117: Unknown function: NeotagsInit
Would you happen to know what might be tripping vim up?

Error on neotags_enabled : Key not found without configuration

Hi, just install this plugin, and restarted, I get this error :

error caught while executing async callback:                                                                                                                                                                       
NvimError(b'Key not found',)                                                                                                                                                                                       
Traceback (most recent call last):                                                                                                                                                                                 
  File "/home/lesell_b/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 37, in init                                                                                                     
    if(self.__vim.vars['neotags_enabled']):                                                                                                                                                                        
  File "/usr/lib/python3.5/site-packages/neovim/api/common.py", line 78, in __getitem__                                                                                                                            
    return self._get(key)                                                                                                                                                                                          
  File "/usr/lib/python3.5/site-packages/neovim/api/nvim.py", line 131, in request                                                                                                                                 
    res = self._session.request(name, *args, **kwargs)                                                                                                                                                             
  File "/usr/lib/python3.5/site-packages/neovim/msgpack_rpc/session.py", line 98, in request                                                                                                                       
    raise self.error_wrapper(err)                                                                                                                                                                                  
neovim.api.nvim.NvimError: b'Key not found'                                                                                                                                                                        
                                                                                                                                                                                                                   
the call was requested at                                                                                                                                                                                          
  File "/usr/lib/python3.5/site-packages/neovim/api/nvim.py", line 159, in filter_request_cb                                                                                                                       
    result = request_cb(name, args)                                                                                                                                                                                
  File "/usr/lib/python3.5/site-packages/neovim/plugin/host.py", line 92, in _on_request                                                                                                                           
    rv = handler(*args)                                                                                                                                                                                            
  File "/usr/lib/python3.5/site-packages/neovim/plugin/host.py", line 70, in _wrap_function                                                                                                                        
    return fn(*args)                                                                                                                                                                                               
  File "/home/lesell_b/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/__init__.py", line 20, in init                                                                                                    
    self.__vim.async_call(self.__neotags.init)

The error goes off if I set let g:neotags_enabled = 1 in init.vim, but as there shoud be default values, I think this is not the wanted behavior

Traceback at startup

When starting neovim I get the following traceback:

error caught while executing async callback:                                                                                                                   
AttributeError("'Neotags' object has no attribute 'ft'")                                                                                                       
Traceback (most recent call last):                                                                                                                             
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 140, in init                                                
    self.update(False)                                                                                                                                         
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 181, in update                                              
    self.__groups[ft] = self._parseTags(ft)                                                                                                                    
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 382, in _parseTags                                          
    return self._get_tags(files, ft)                                                                                                                           
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 578, in _get_tags                                           
    self._parse(ft, match_list, groups, languages, ignored_tags, equivalent, order)                                                                            
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 604, in _parse                                              
    key = "%s#%s" % (self.ft, match['kind'].decode('ascii'))                                                                                                   
AttributeError: 'Neotags' object has no attribute 'ft'                                                                                                         
                                                                                                                                                               
the call was requested at                                                                                                                                      
  File "/usr/lib/python3.7/site-packages/neovim/api/nvim.py", line 210, in filter_notification_cb                                                              
    notification_cb(name, args)                                                                                                                                
  File "/usr/lib/python3.7/site-packages/neovim/plugin/host.py", line 107, in _on_notification                                                                 
    handler(*args)                                                                                                                                             
  File "/usr/lib/python3.7/site-packages/neovim/plugin/host.py", line 69, in _wrap_function                                                                    
    return fn(*args)                                                                                                                                           
  File "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/__init__.py", line 20, in init                                                
    self.__vim.async_call(self.__neotags.init) 

From a quick look at the code at that line:

    def _parse(self, ft, match_list, groups, languages, ignored_tags, equivalent, order):
        dia.debug_start()
        key_lang = languages[0]

        if key_lang in ('c', 'cpp', 'java', 'go', 'rust', 'cs'):
            buf = strip_c(self.__slurp, dia)
        else:
            buf = bytes(self.__slurp, 'ascii', errors='replace')

        toks = sorted(tokenize(buf, dia))

        for match in match_list:
            if (bindex(toks, match['name']) != (-1)
                    or b'$' in match['name']
                    or b'.' in match['name']):
                key = "%s#%s" % (self.ft, match['kind'].decode('ascii'))
                groups[key].add(match['name'])

        dia.debug_end("Finished _parse, found %d items."
                      % sum(map(len, groups.values())))

It looks like the self.ft should just be ft.

Very poor performance when neotags is enabled and the tags file is large

I have a project with a large tags file (wc -l tags -> 8949), and enabling neotags absolutely cripples vim's performance. Even simple tasks such as j/k are slow, and saving (:w) takes a good 5-10 seconds. This makes editing any file almost impossible.

Also, even with a smaller tags file (e.g. just 1-2k tags), it's still noticeably choppier when scrolling around or saving files.

Is there a way to speed up neotags? Other highlighting plugins (e.g. TagHighlight) do not have this issue.

Only update tags matching the buffer saved

It seems like neotags.nvim does not work unless neotags itself is in charge of actually generating the tags file. But I don't like the way neoplete generates tags.

The plugin I'm using currently for that, vim-autotag, only updates tags related to the buffer I just saved. So I can manually run ctags to add additional source files, which will not get clobbered by the script. If I try doing the same with neotags, they get removed:

$ ctags -R --extras=+f --fields=\* /usr/include/vulkan .
$ grep -c 'vulkan.h' tags
3736
# save buffer with neotags running
$ grep -c 'vulkan.h' tags
0

It would be great if you could either modify this script to behave more like vim-autotag (thus preserving the existing tags), or alternatively make it possible to combine neotags with vim-autotag somehow (so I can use neoplete for tag highlighting and vim-autotag for tag updating).

Error started in latest commits

error caught while executing async callback:
ValueError('cannot mmap an empty file',)
Traceback (most recent call last):
  File "/Users/carlitux/.cache/dein/.cache/init.vim/.dein/rplugin/python3/neotags/neotags.py", line 106, in highlight
    groups, kinds = self._getTags(files)
  File "/Users/carlitux/.cache/dein/.cache/init.vim/.dein/rplugin/python3/neotags/neotags.py", line 329, in _getTags
    mf = mmap.mmap(f.fileno(), 0,  access=mmap.ACCESS_READ)
ValueError: cannot mmap an empty file

the call was requested at
  File "/usr/local/lib/python3.6/site-packages/neovim/api/nvim.py", line 171, in filter_notification_cb
    notification_cb(name, args)
  File "/usr/local/lib/python3.6/site-packages/neovim/plugin/host.py", line 108, in _on_notification
    handler(*args)
  File "/usr/local/lib/python3.6/site-packages/neovim/plugin/host.py", line 70, in _wrap_function
    return fn(*args)
  File "/Users/carlitux/.cache/dein/.cache/init.vim/.dein/rplugin/python3/neotags/__init__.py", line 25, in highlight
    self.__vim.async_call(self.__neotags.highlight)

Sluggish with big projects

Hi,
Thanks for awesome plugin. My issue is that neovim in windows because extremely sluggish when neotags is enabled for big projects. On the other side I dont even see any highlight difference. I assume is because is busy _parseLine() and not done yet. The neotags file that it creates is ~8.8kb. However, if I use the default options:

let g:neotags_ctags_args = [
            \ '-L -',
            \ '--fields=+l',
            \ '--c-kinds=+p',
            \ '--c++-kinds=+p',
            \ '--sort=no',
            \ '--extra=+q'
            \ ]

Then neotags ctags file is created but always with size 0.
This below is my configuration:

Plug 'c0r73x/neotags.nvim' " Depends on pip3 install --user psutil
	let g:neotags_enabled = 1
	let g:neotags_file = g:cache_path . 'neotags'

	let g:neotags_appendpath = 0
	let g:neotags_recursive = 0
	let g:neotags_ctags_bin = 'rg --files -t cpp "'. getcwd() .'" | ctags'
	let g:neotags_ctags_args = [
				\ '-L -',
				\ '--fields=+iaSl',
				\ '--c-kinds=+p',
				\ '--c++-kinds=+p',
				\ '--sort=no',
				\ '--extra=+q'
				\ ]

Thanks for the support

`async=True` SyntaxError

Upon executing :UpdateRemotePlugins, this error appeared:

  File "/Users/amadan/.local/share/nvim/plugged/neotags.nvim/rplugin/python3/neotag
s/neotags.py", line 128
    self.vim.command('autocmd %s * call NeotagsUpdate()' % evupd, async=True)
                                                                      ^
SyntaxError: invalid syntax

I expect this is due to async being a keyword in Python since 3.7.0:

import keyword
keyword.iskeyword('async')
# => True
import sys
sys.version
# => '3.7.0 (default, Jun 29 2018, 20:13:13) \n[Clang 9.1.0 (clang-902.0.39.2)]'

Syntax highlighting flickers while neotags is running

After opening a buffer, all of the highlighted type names etc. end up flickering back and forth between the chosen highlight color and the normal highlighting while neotags is recomputing the highlighting rules.

It flickers back and forth a good 5-10 times or so, and is quite distracting.

No highlighting and error in ctags-default flags

  • The default for neotags_ctags_args should contain −−extra=[+|−]flags not --extras=[+|-]flags
  • I am not able to see any difference, when invoking NeotagsToogle.
    My Config:

let g:neotags_enabled = 1
let g:neotags_ctags_args = [ \ '--fields=+l', \ '--c-kinds=+p', \ '--c++-kinds=+p', \ '--sort=no', \ '--extra=+q', \ ]
let g:neotags_highlight = 1

No highlight of C tags

Work only default highlight for C language.
User-defined types and macroses aren't highlighted.

My config:
let g:neotags_enabled = 1
let g:neotags_highlight = 1
let g:neotags#c#order = 'cgstuedfpm'
let g:neotags#cpp#order = 'cgstuedfpm'

Other plugins:
NerdTree
ctrlp
tagbar

No module name 'neovim.api.nvim'

When starting neovim I get this traceback:

no notification handler registered for "/home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags:function:NeotagsInit"                         
Encountered ModuleNotFoundError loading plugin at /home/asadaoui/.config/nvim/plugged/neotags.nvim/rplugin/python3/neotags: No module named 'neovim.api.nvim'  
Traceback (most recent call last):                                                                                                                             
  File "/usr/lib/python3.7/site-packages/pynvim/plugin/host.py", line 135, in _load                                                                            
    module = imp.load_module(name, file, pathname, descr)                                                                                                      
  File "/usr/lib/python3.7/imp.py", line 244, in load_module                                                                                                   
    return load_package(name, filename)                                                                                                                        
  File "/usr/lib/python3.7/imp.py", line 216, in load_package                                                                                                  
    return _load(spec)                                                                                                                                         
  File "<frozen importlib._bootstrap>", line 696, in _load                                                                                                     
  File "<frozen importlib._bootstrap>", line 677, in _load_unlocked                                                                                            
ModuleNotFoundError: No module named 'neovim.api.nvim'

I'm using Neovim v0.3.1

It looks like the python module was renamed from neovim to pynvim. (see this commit)

Link the highlighted tag names to sensible values by default

cTypeTag etc. are all completely undefined by default, which sort of defeats the purpose of a highlighting engine. (And no, I don't plan on adding this boilerplate for every language in existence to my own .vimrc)

IMO the default should be linked to sane values like cTypeTag -> Type, cFunctionTag -> Function etc..

Clarity for ag use in readme.md

The way the following is written is unclear to me:

To use the_silver_searcher or similar applications when generating tags you can do something like this.

let g:neotags_appendpath = 0
let g:neotags_recursive = 0

" Use this option for the_silver_searcher
let g:neotags_ctags_bin = 'ag -g "" '. getcwd() .' | ctags'
" Or this one for ripgrep. Not both.
let g:neotags_ctags_bin = 'rg --files '. getcwd() .' | ctags'
let g:neotags_ctags_args = [
\ '-L -',
\ '--fields=+l',
\ '--c-kinds=+p',
\ '--c++-kinds=+p',
\ '--sort=no',
\ '--extras=+q'
\ ]

Is the ctags_args setting applicable to both the ag and the ripgrep setup?

always error msg: regexp missing final separator

ctags: Warning: /\s*(var)?\s*(\w*)\s*:?=\s*func/\2/f/: regexp missing final separator
neovim 0.4.3, windows 10, ctags for windows
Editing Golang files and md files. Guess not supported by neotags, however.

Error when python venv in same directory

I get this when loading a python file, ever since I ran: 'python -m venv .venv

error caught while executing async callback:
NvimError(b'Vim(syntax):E339: Pattern too long',)
Traceback (most recent call last):
File "/home/ben/.bbenv/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 52, in init
self.highlight()
File "/home/ben/.bbenv/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 158, in highlight
[self.__vim.command(cmd) for cmd in cmds]
File "/home/ben/.bbenv/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 158, in
[self.__vim.command(cmd) for cmd in cmds]
File "/home/ben/.local/lib/python3.5/site-packages/neovim/api/nvim.py", line 218, in command
return self.request('nvim_command', string, **kwargs)
File "/home/ben/.local/lib/python3.5/site-packages/neovim/api/nvim.py", line 131, in request
res = self._session.request(name, *args, **kwargs)
File "/home/ben/.local/lib/python3.5/site-packages/neovim/msgpack_rpc/session.py", line 98, in request
raise self.error_wrapper(err)
neovim.api.nvim.NvimError: b'Vim(syntax):E339: Pattern too long'

the call was requested at
File "/home/ben/.local/lib/python3.5/site-packages/neovim/api/nvim.py", line 171, in filter_notification_cb
notification_cb(name, args)
File "/home/ben/.local/lib/python3.5/site-packages/neovim/plugin/host.py", line 108, in _on_notification
handler(*args)
File "/home/ben/.local/lib/python3.5/site-packages/neovim/plugin/host.py", line 70, in _wrap_function
return fn(*args)
File "/home/ben/.bbenv/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/init.py", line 21, in init
self.__vim.async_call(self.__neotags.init)

I noticed that the .tags file has a lot of the information found in the .venv folder. Is there a way to exclude it?

C syntax highlighting not working as before

After some time I updated all my plugins in neovim and I found that some of the highlights are not working like cType and others

screen shot 2018-08-23 at 17 04 20

I'm using rakr/vim-one as my colour scheme I don't see any strange change there.
Anyone can point to me what to look for? I'm getting a bit crazy here

Allow adding extra directories to "projects"

If my project heavily relies on identifiers exported by third parties libraries, I would like to be able to add their include directories to my tag list.

On the command line, I can do this with e.g. ctags . /usr/include/foo/. It seems like neotags has no concept of doing this (except perhaps by overriding the ctags arguments itself via a local vimrc or something).

It would be hugely useful if you could allow adding third party directories like this.

Note that I discussed this before in #12, but the recommended solution in that thread (to disable neotags tag generation in favor of other scripts like autotags) no longer works because neotags no longer consults the tags file, instead storing its tags in ~/.vim_tags. So proper support for this in neotags is needed.

No such file or directory when starting neovim

Hi guys,

I installed neotags.vim, compiled the binary and added this config in init.vim:

let g:neotags_enabled = 1
let g:neotags_highlight = 1
let g:neotags_run_ctags = 1
let g:neotags_verbose = 1
let g:neotags_recursive = 1
let g:neotags_no_autoconf = 1

For some reason, when starting neovim, I get this error:

error caught while executing async callback:
FileNotFoundError(2, 'No such file or directory')
Traceback (most recent call last):
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 137, in init
self.update(False)
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 156, in update
self._update(ft, force)
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 278, in _update
self.__groups[ft] = self._parseTags(ft)
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 396, in _parseTags
return self._get_tags(files, ft)
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 558, in _get_tags
with self._open(File, 'rb', comp_type) as fp:
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/neotags.py", line 943, in _open
return eval(string)
File "", line 1, in
File "/usr/local/Cellar/python/3.6.4_3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/gzip.py", line 53, in open
binary_file = GzipFile(filename, gz_mode, compresslevel)
File "/usr/local/Cellar/python/3.6.4_3/Frameworks/Python.framework/Versions/3.6/lib/python3.6/gzip.py", line 163, in init
fileobj = self.myfileobj = builtins.open(filename, mode or 'rb')
FileNotFoundError: [Errno 2] No such file or directory: '/Users/elhodred/.vim_tags/__Users__elhodred__Nextcloud__Projects__Athonet__kamailio.tags.gz'

the call was requested at
File "/usr/local/lib/python3.6/site-packages/neovim/api/nvim.py", line 210, in filter_notification_cb
notification_cb(name, args)
File "/usr/local/lib/python3.6/site-packages/neovim/plugin/host.py", line 107, in _on_notification
handler(*args)
File "/usr/local/lib/python3.6/site-packages/neovim/plugin/host.py", line 69, in _wrap_function
return fn(*args)
File "/Users/elhodred/code/dotfiles/config/nvim/plugged/neotags.nvim/rplugin/python3/neotags/init.py", line 20, in init
self.__vim.async_call(self.__neotags.init)

I don't know where to look. Please, someone can give me some directions?

Install fails with dein

First problem is with a colon
call dein#add('c0r73x/neotags.nvim', {'build:' 'make'})
E720: Missing colon in Dictionary: 'make'})
Then get
Error detected while processing VimEnter Auto commands for "*": E117: Unknown function: NeotagsInit

Edited - problem still exists

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.