pudb.vim
pudb.vim copied to clipboard
no command found in neovim
Hi, I installed this plugin by adding the line
Plugin 'SkyLeach/pudb.vim'
to my .vimrc, where the plugin manager is vundle
when I run PluginInstall in vundle, the pudb seems to be installed, but when i restart tmux and neovim, there is no command like PUDBTOGGLE, i did not yet make other configurations, is there something i must do before the command will show?
I'm getting the same problem with neovim on a mac. After installing the plugin and running :UpdateRemotePlugins
vim_pudb.py fails to get registered in ~/.local/share/nvim/rplugin.vim
.
Hi, I installed this plugin by adding the line
Plugin 'SkyLeach/pudb.vim'
to my .vimrc, where the plugin manager is vundle when I run PluginInstall in vundle, the pudb seems to be installed, but when i restart tmux and neovim, there is no command like PUDBTOGGLE, i did not yet make other configurations, is there something i must do before the command will show?
Have you solved this problem yet?
This is (probably) due to project structure. I'll take a look.
I am having the same issue
I was having this issue, and when I ran :UpdateRemotePlugins, I was getting "not found" errors for jupyter-client and pudb. Solved by installing both with pip
, and everything seems to be okay. Curious why, though, since I had pudb already installed (via the Arch repos).
Same issue, on MacOS Catalina. Installed pudb with pip, and the plugin via vundle. Anything else needed?
Same issue, on MacOS Catalina. Installed pudb with pip, and the plugin via vundle. Anything else needed?
Nevermind, manged to get it to work.
Follow the guidence from :h nvim-python
to make sure nvim is setup with python, then use :checkhealth
to make sure everything is okay, and it will tell you if you'll need to install pudb (pip install pudb
), to run :UpdateRemotePlugins
or whatever.
I'm getting the same problem with neovim on a mac. After installing the plugin and running
:UpdateRemotePlugins
vim_pudb.py fails to get registered in~/.local/share/nvim/rplugin.vim
.
I am having the same issue (using vim-plug to install).
What worked for me was running python3 -m pip install --user --upgrade pynvim
per the nvim docs. Running :checkhealth
told me that PUDB wasn't registered as python3 wasn't available. This fixed that problem and I now can run the commands.