在 Vim 中保存后语法突出显示更改

发布于 2024-11-16 10:27:08 字数 333 浏览 2 评论 0原文

我已经安装了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妥活 2024-11-23 10:27:08

您可以在保存之前执行

:verbose set filetype
:verbose set

提示:使用 :redir > file.txt 来捕获输出,这样您就不必复制/粘贴,这对于 gvim 来说可能很困难 - 用于命令输出

您还可以在保存时查看自动命令:

:verbose au BufWrite
:verbose au BufWritePre
:verbose au BufWritePost

这将有助于发现哪个插件/脚本导致突出显示变得混乱。

Can you, before and after saving do

:verbose set filetype
:verbose set

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 output

You could also look at the autocommands when saving:

:verbose au BufWrite
:verbose au BufWritePre
:verbose au BufWritePost

This would serve to discover what plugin/script is causing the highlighting to go haywire.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文