.vimperatorrc configuration contains:
ab aaa a\nb\nc
I want to achieve the following effects
a b c
But the actual effect is
a\nb\nc
consult
:iab aaa a<CR>b<CR>c不建议在命令行模式使用带回车的扩展,所以用:iab Only supports insert mode
:iab aaa a<CR>b<CR>c
:iab
Also, it is recommended to use plug-ins like snippets to expand text
https://github.com/garbas/vim...
https://github.com/SirVer/ult...
https://github.com/drmingdrme...
:iab aaa a<CR>b<CR>c
不建议在命令行模式使用带回车的扩展,所以用
:iab
Only supports insert modeAlso, it is recommended to use plug-ins like snippets to expand text
https://github.com/garbas/vim...
https://github.com/SirVer/ult...
https://github.com/drmingdrme...