git shell命令不能与IdeaVim一起使用

k5hmc34c  于 2022-11-11  发布在  Git
关注(0)|答案(2)|浏览(148)

我正在使用intelliJ for IDE并安装了IdeaVim。我尝试在vim内执行git status,但它不起作用,也没有显示任何内容。
:! git --help:! ls -al工作
:! cd /无法正常工作,并显示以下错误消息。

Cannot run program "cd": error=2, No such file or directory.

我可以在vim里面的shell上使用git命令吗?有人能帮我吗?谢谢。

vh0rcniy

vh0rcniy1#

摘自IdeaVim参考手册:

==============================================================================
5. EX commands                                  *ex-cmd-index*

This is a brief but complete listing of all the ":" commands, without
mentioning any arguments.  The optional part of the command name is inside [].
The commands are sorted on the non-optional part of their name.

tag           command         action ~
------------------------------------------------------------------------------
|:display|      :di[splay]      display registers
|:registers|    :reg[isters]    display the contents of registers
|:substitute| :s[ubstitute] find and replace text

“简短但完整”表明这是IdeaVim中仅有的三个受支持的Ex-mode命令。

au9on6nz

au9on6nz2#

这个问题是四年前提出的,但现在看来仍有些相关
我正在使用带有PyCharm 2021.2的IdeaVim,也遇到了类似的问题,因为默认情况下使用!!得到的shell是一个dos cmd shell。
所以不要用cd,试试dir。

相关问题