Arminius
Arminius
I'm sorry you're still having issues. Does the `no request handler registered` message appear all the time (on that machine)? Is there a configuration where it does not appear? It's...
Great, I can now repro with your minimal config and exactly these three plugins: ```viml call plug#begin('~/.vim/plugged') Plug 'numirias/semshi' Plug 'autozimu/LanguageClient-neovim' Plug 'brooth/far.vim' call plug#end() ``` All three share in...
@balta2ar Unless you think this can be fixed in Semshi, I'd go ahead and file a bug at [neovim/python-client](https://github.com/neovim/python-client).
@lkhphuc Thanks for noting. Are you using Neovim in the terminal, or a particular frontend? Do you get the error consistently or just sometimes? I still think this may be...
@balta2ar @lkhphuc Does the error still reproduce with latest Semshi and latest Neovim Python client? (`$ pip show neovim` should give v0.3.0) With #26, API calls from threads are now...
> You could use text properties in Vim probably. Ah, thanks, that sounds helpful! I'm going to look into that. > As for Neovim there are nice changes planned using...
@CrossR Do you know if Oni implements [buffer highlighting](https://github.com/neovim/neovim/blob/5b2cee03c87a1cc54a747f70753c47e0ece028d4/runtime/doc/api.txt#L82)? After some quick tests, it seems calls like `nvim_buf_add_highlight()` don't have any effect. Semshi relies on that API for its highlighting,...
> And it should work for highlights, or at least Oni uses them in a few places for LSP related bits. Yep, I could make highlighting work after re-applying the...
It looks like none of `VimEnter`, `BufEnter` and `GUIEnter` is triggered (or gets through to Semshi) when starting up Oni with a Python file. Want me to file an issue...
Just to let you know, I made a change so that Semshi ensures initialization irrespective of the event order (83f56bfac9debd3c29ef7a9630b57e32d43e5f63) as this has also caused problems elsewhere (#11) - just...