.vimperatorrc配置中有:
ab aaa a\nb\nc
想实现如下效果
a b c
但是实际效果就是
a\nb\nc
请教
:iab aaa a<CR>b<CR>c不建议在命令行模式使用带回车的扩展,所以用:iab 仅支持插入模式
:iab aaa a<CR>b<CR>c
:iab
另外,建议使用 snippets 之类的插件来扩展文本
https://github.com/garbas/vim...
https://github.com/SirVer/ult...
https://github.com/drmingdrme...
:iab aaa a<CR>b<CR>c
不建议在命令行模式使用带回车的扩展,所以用
:iab
仅支持插入模式另外,建议使用 snippets 之类的插件来扩展文本
https://github.com/garbas/vim...
https://github.com/SirVer/ult...
https://github.com/drmingdrme...