Macvim 环绕插件
总的来说,我对 Vim 还算陌生,但我在使用 Surround 插件时遇到了问题。大多数标准选项似乎都有效,但是当我在视觉模式下突出显示文本时,切换回编辑模式并按 's' 键用字符包围,'s' 键最终会删除突出显示的文本并将编辑器放回插入模式。
深入研究后,这似乎是合乎逻辑的,因为这是“s”在该模式下应该具有的行为,但是如何使用插件包围选定的文本?
I'm fairly new to Vim in general but I'm having trouble with the Surround plugin. Most of the standard options seem to work but when I highlight text in visual mode, switch back to edit mode and press 's' to surround with a character the 's' key simply ends up removing the highlighted text and puts the editor back into insert mode.
After digging into this, it seems logical since this is the behavior that the 's' should have within that mode but then how do I surround selected text using the plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在视觉模式下突出显示文本,例如按 v 并选择文本(例如 viw 选择光标所在的单词,然后键入,例如 s ' 用单引号括起来。只是不要退出可视模式。
Highlight your text in visual mode, as in press v and select your text (like viw to select the word your cursor is inside, and type, for example s' to surround it with single quotes. Just don't drop out of visual mode.