Open huberb opened 1 month ago
The remote plugin concept will be removed, because it's not needed if pynvim just provides a set_handler
function. See https://github.com/neovim/pynvim/issues/567
@b0o any chance you can implement set_handler in pynvim?
I'm trying to add a new command to neovim using this project. This is my code:
my log file shows "file loaded", but nothing else. It seems like the class is never instanciated. Logging output from inside the class is never written
I'm loading this using the following lines in my init.lua:
vim.api.nvim_command("python3 import my_plugin")
Which seems to be correct. The file is loaded when starting neovim
I'm using neovim 0.10.1 and python 3.11.5
Is there anything wrong with my approach? I assumed the class will be instanciated and registered automatically