-
Notifications
You must be signed in to change notification settings - Fork 171
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
no notification handler registered for "Dir" / "GUI" with nvim 0.11 #1112
Comments
@Mte90 The problem stems from |
I don't have that plugin but looking at the code is the same on the file that I mentioned (also the file name is the same). The error is generated by the nvim python library and involve the rpcnotify for sure |
I think that depends on this change neovim/neovim#28487 that changed the way rpcnotify manage channels. Looking at https://github.com/search?q=repo%3Arliang%2Fnvim-pygtk3+gui_channel&type=code and the documentation now |
So in my machine I had So like in your case it was loaded automatically but I never noticed. The |
if I am understanding this correctly the way
To reproduce I had to run the gui along a working python plugin:
At this point cursor movements and various other events will show the message from here: I suppose the best we can do is replace calls to In fact we already do this in some places. However we DO NOT do it for the following Commands:
Autocommands
Note: Consulting nvim_list_uis() with every cursor move does not sound like a good idea. See UIEnter/UILeave Note: nvim_list_uis is from API4 (nvim 0.3 i think) |
So me and another user using nvim nightly is getting tons of errors:
So my guess is that something is new in neovim and this client don't updated to that change.
I think that is something depending on
neovim-qt/src/gui/runtime/plugin/nvim_gui_shim.vim
Line 239 in 442abfb
The text was updated successfully, but these errors were encountered: