如何在WebStorm中实现自定义命令?

时间:2020-05-01 20:05:43

标签: vim webstorm ideavim

我想对~/.ideavimrc文件实施自己的自定义命令,但是无法管理它。

〜/ .ideavimrc

source ~/.vimrc

〜/ .vimrc

"Below command provides to quit file with uppercase Wq."
command! Wq wq

"Below command provides design recipe for methods."
command! Fcomments :r ~/Documents/vcommands/FunctionComments.txt

FunctionComments.txt

/**
  Data Definition: 
  Properties:
  Purpose:
  Example:
  Returns:
*/ 

我想要的是当我以命令模式向WebStorm键入Fcomments时,我想要将该文件上传到代码的上方。但是Wq有效,Fcomments为什么无效?

我从WebStorm获得的是VIM Not an editor command: r | r ~/...

0 个答案:

没有答案