我想对~/.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 ~/...