-
Notifications
You must be signed in to change notification settings - Fork 36
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
Not an editor command: Semshi enable #74
Comments
Figured it is because I have not run |
I have the same issue. UpdateRemotePlugins doesn't work either |
Same happens to me. nvim 0.7.0 |
UpdateRemotePlugins doesn't work for me. Below step helps resolve in my side.
|
My problem was solved by installing I used this command:
A regular |
pynvim must be installed under the python that you are using for Don't forget you can use the following cmd to see where it is installed -- if it resolves to a strange installation, you should remove it:
|
Still getting the 'Not an editor command :Semshi enable' :( This is my nvim:checkhealth coc: health#coc#check
nvim: health#nvim#checkConfiguration
Performance
Remote Plugins
terminal
provider: health#provider#checkClipboard (optional)
Python 3 provider (optional)
Python virtualenv
Ruby provider (optional)
Node.js provider (optional)
Perl provider (optional)
vim.lsp: require("vim.lsp.health").check()
vim.treesitter: require("vim.treesitter.health").check()
|
What does |
Thanks for the quick response !!
`" perl plugins " node plugins " python3 plugins " ruby plugins " python plugins `
|
Sorry for kind of a spam: But just want to say the issue seems resolved for now. Presently the output is " node plugins " python3 plugins " ruby plugins " python plugins and the issue seems to be gone. And this happened after started a new instance of neovim-qt. Earlier, UpdateRemotePlugins did not seem to help as you can see from the content of my @wookayin Btw, in all these attemts I am using your particular fork Again, sorry for a longish post, but there seems to be someting amiss, and I am just trying to help. |
To fix this on my end, using python3.11 installed via linuxbrew, I first uninstalled both pip3.11 uninstall neovim
pip3.11 uninstall pynvim Then, I reinstalled only pynvim: pip3.11 install pynvim Then, I added the following to my -- in vimscript, this would be let g:python3_host_prog = '/home/linuxbrew/.linuxbrew/bin/python3.11'
vim.g.python3_host_prog = '/home/linuxbrew/.linuxbrew/bin/python3.11' Then, and only then, did I finally get the Hope this helps and good luck out there! |
Many users who are not familiar with how neovim and rplugins works often get lost on the error 'Semshi: command not found and keeps asking the same question (e.g., numirias#74), although the easy solution that one should run `:UpdateRemotePlugins` is already documented. Nevertheless we can show more informative, fool-proof error messages on `:Semshi` when remote plugins are not registered or broken somehow.
Hi! I have run into a very strange issue. I am using the exact same init.vim file on my local Mac and a remote server which runs ubuntu. Semshi loads just fine on Mac but runs into this error on Ubuntu.
Error detected while processing function <SNR>17_filetype_changed:
line 4:
E492: Not an editor command: Semshi enable
I suspect that this error indicates that Semshi is not loaded correctly? I tried to delete other syntax related lines in the init.vim file. At last, I made my init.nvim file looks like this:
call plug#begin('~/.local/share/nvim/plugged')
Plug 'numirias/semshi'
call plug#end()
but still encountered same problem. Any insights?
Neovim version is 0.4.3 on both systems (nvim.appimage on linux). I use vim-plug to manage my plugins.
The text was updated successfully, but these errors were encountered: