在 Vim 中保存后语法突出显示更改
我已经安装了 Markdown 语法插件。
当我位于不与任何文件关联的新缓冲区上时,粘贴网站的源部分 http:// /rosylilly.github.com/markdown.html 进入其中,颜色看起来很好,就像 Markdown 语法一样。
但是,保存文件后,颜色会发生变化。知道我该如何解决这个问题吗?
I have installed Markdown syntax plugin.
When I'm on a new buffer not associated with any file, and paste the source portion of the site http://rosylilly.github.com/markdown.html into it, the colors appear nicely as it should for the markdown syntax.
However, after saving the file, the colors change. Any idea how I can fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在保存之前和执行
提示:使用
:redir > file.txt
来捕获输出,这样您就不必复制/粘贴,这对于 gvim 来说可能很困难 - 用于命令输出您还可以在保存时查看自动命令:
这将有助于发现哪个插件/脚本导致突出显示变得混乱。
Can you, before and after saving do
Tip: use
:redir > file.txt
to capture the output so you won't have to copy/paste which can be difficult with gvim - for command outputYou could also look at the autocommands when saving:
This would serve to discover what plugin/script is causing the highlighting to go haywire.