c0r73x / neotags.nvim

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

Neotags fails to start when installed with vim-plug #7

Closed 3goliad closed 7 years ago

3goliad commented 7 years ago

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?

c0r73x commented 7 years ago

Hi, I use vim-plug myself. From the error it looks like you forgot to run :UpdateRemotePlugins.

I use this in my vimrc for neovim-plugins:

...
function! DoRemote(arg)
    UpdateRemotePlugins
endfunction

Plug 'c0r73x/neotags.nvim', { 'do': function('DoRemote') }
...
3goliad commented 7 years ago

Thanks! My apologies.