I'm using PyCharm with IdeaVim, and I have a little issue. I'm trying to execute the following command in Vim:
:! cd ./Desktop
However, I got the following error, and I don't know why :
Cannot run program "cd": error=2, No such file or directory.
I'd like to execute that kind of command in PyCharm. How could I fix this little issue?
gvim
(/bin/bash: line 0: cd: Desktop: No such file or directory
). Is there a way to fix it in both situation? – Jan 11 '17 at 04:56cd ~/Desktop
. But if you want to change directories in Vim proper, use:cd
instead of:!cd
. – muru Jan 11 '17 at 04:59Vundle
to install a plugin? – Jan 11 '17 at 05:04filetype
, manually add tortp
). Andvim-plug
does all that I need it to. – muru Jan 11 '17 at 05:29