vim 在每行末尾显示空块
在 Vim 中编辑文件时,我尝试进行全局搜索和替换,但在输入以下内容后我不小心按了 Enter:
:g/$/x
现在 Vim 处于一种有趣的状态,每行末尾都会出现一个空的蓝色框,而不仅仅是在我正在编辑的文件,但在我打开的每个文件中!我已经注销并重新登录,但奇怪的状态仍然存在。发生了什么事,我怎样才能让 Vim 恢复正常?
While editing a file in Vim, I tried to do a global search and replace, but I accidentally hit enter after typing this:
:g/$/x
Now Vim is in a funny state where an empty blue box appears at the end of each line, not only in the file I was editing, but in EVERY file I open! I've logged out and back in, but the strange state persists. What happened, and how can I get Vim back to normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是突出显示。输入
:nohl
它应该消失。It's only highlighting. Type
:nohl
and it should vanish.