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
I am running macOS Big Sur (11.2.2) and NeoVim v0.4.4 from HomeBrew, and the floobits-neovim plugin fails. When starting nvim, here's the error:
Floobits error: no neovim python module. Run `pip install neovim` to fix. For more info, :he nvim-python
Two things to note, the neovim python module was renamed to pynvim, and the nvim-python help page no longer exists. These were both changed, but haven't been reflected in the floobits plugin.
If I replace all instances of neovim with pynvim in __init.py__, and then change vimbits.vim to have if !has('python3') instead of just if !has('python'), the plugin does not error at launch. However, I'm not sure if this actually still works, since I've never used floobits before, and I'm trying to use it for the first time.
Let me know if you need any additional information. Thanks in advance!
The text was updated successfully, but these errors were encountered:
I am running macOS Big Sur (11.2.2) and NeoVim v0.4.4 from HomeBrew, and the floobits-neovim plugin fails. When starting
nvim
, here's the error:Two things to note, the
neovim
python module was renamed topynvim
, and thenvim-python
help page no longer exists. These were both changed, but haven't been reflected in the floobits plugin.If I replace all instances of
neovim
withpynvim
in__init.py__
, and then change vimbits.vim to haveif !has('python3')
instead of justif !has('python')
, the plugin does not error at launch. However, I'm not sure if this actually still works, since I've never used floobits before, and I'm trying to use it for the first time.Let me know if you need any additional information. Thanks in advance!
The text was updated successfully, but these errors were encountered: