You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: