比如有一个单词dcustmsg我已经在v模式选中了该单词,有没有快捷键在这个单词的两侧添加引号,使之变为"dcustmsg"
3 回答
拉风的咖菲猫
TA贡献1995条经验 获得超2个赞
配置文件添加函数和键映射如下:
function! s:surround() let word = expand("<cword>") let wrap= input("wrap with: ") let command = "s/".word."/".wrap.word.wrap."/" execute commandendfunctionnmap cx :call <SID>surround()<CR>
这样normal模式光标放在单词上,然后使用快捷键cx,会提示两边填充的字符,输入字符回车即可。
- 3 回答
- 0 关注
- 196 浏览
添加回答
举报
0/150
提交
取消