标签: intellij-idea command ideavim
有没有办法用IdeaVim创建自定义命令(如:command中的vim)?尝试运行:command ... ...吐出Not an editor command: command。
:command
vim
:command ... ...
Not an editor command: command
答案 0 :(得分:0)
您可以通过向〜/ .ideavimrc 中添加以下内容来向IdeaVim注册自定义命令。
command! Reformat action ReformatCode
并使用:Reformat调用它。
:Reformat