.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...