Vim 突出显示尾随空白以及制表符前后的空格
我从 vim wiki 获得了这个并将其添加到我的 .vimrc 中以突出显示尾随空白和制表符之前的空格(仅在插入模式下):
highlight ExtraWhitespace guibg=purple
match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd InsertEnter * match ExtraWhitespace /\s\+$%#\@<!$\| \+\ze\t/
autocmd InsertLeave * match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd BufWinLeave * call clearmatches()
我想扩展它以包含制表符之后的空格。
所以,我想:
- 突出显示所有尾随空格。
- 突出显示制表符之前和之后的空格。
- 当我打字时不要突出显示尾随空格。
我该怎么做?
I got this from the vim wiki and added it to my .vimrc to highlight trailing whitespace, and spaces before tabs (only when in insert mode):
highlight ExtraWhitespace guibg=purple
match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd BufWinEnter * match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd InsertEnter * match ExtraWhitespace /\s\+$%#\@<!$\| \+\ze\t/
autocmd InsertLeave * match ExtraWhitespace /\s\+$\| \+\ze\t/
autocmd BufWinLeave * call clearmatches()
I would like to extend this to include spaces after tabs.
So, I would like to:
- Highlight all trailing whitespace.
- Highlight spaces before, and after tabs.
- Don't highlight trailing whitespace while I am typing.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
既然您根本没有提到它,您是否尝试过使用 listchars ?我的 .vimrc 中有这个,它不会突出显示它们,但您可以选择要为它们显示的任何特殊字符:
Since you didn't mention it at all have you tried using listchars? I have this in my .vimrc it doesn't highlight them but you can pick any special characters you want to show for them: