像在 Textmate 中一样使用 VIM 格式化 CSS

发布于 2024-09-14 10:23:04 字数 101 浏览 6 评论 0原文

在 TextMate 中,有一个很棒的选项“格式化 CSS”和“格式化 CSS 压缩”。 vim中好像没有这个选项。也许它在我不知道的插件中?或者也许我需要以某种方式集成CSS Tidy?

In TextMate there is this awesome option to "Format CSS" and "Format CSS Compressed". This option doesn't seem to exist in vim. Perhaps it's in a plugin I'm not aware of? Or maybe I need to integrate CSS Tidy somehow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

绿光 2024-09-21 10:23:04

您可以相当轻松地集成 CSS Tidy。由于您来自 TextMate,我假设您使用的是 Mac。如果您尚未安装 CSS tidy,我建议您通过包管理器安装它,例如优秀的 Homebrew

安装完成后,您可以通过将以下内容添加到您的 ~/.vimrc 中,允许 Vim 对 = 命令使用 CSS tidy,该命令会自动格式化代码

autocmd filetype css setlocal equalprg=csstidy\ -\ --silent=true 

:打开一个 CSS 文件,当您调用 = 命令时,它会参考 CSS Tidy 来格式化它。在打开的 CSS 文件上尝试使用 gg=G 来格式化整个文档。

请参阅 CSS Tidy 使用指南 添加您喜欢的任何其他选项,并且不要忘记使用 \ 添加到上述 ~/.vimrc 命令中的转义空格。

You can integrate CSS Tidy fairly easily. Since you're coming from TextMate I'll assume you're on a Mac. If you don't already have CSS tidy installed, I'd recommend installing it via a package manager, like the excellent Homebrew.

Once it's installed, you can allow Vim to use CSS tidy for the = command, which automatically formats code, by adding the following to your ~/.vimrc:

autocmd filetype css setlocal equalprg=csstidy\ -\ --silent=true 

Now whenever you have a CSS file open, it will consult CSS Tidy to format it when you invoke the = command. Try it on an open CSS file with gg=G to format the whole document.

Consult the CSS Tidy usage guide to add any other options you like, and don't forget to escape spaces you add to the above ~/.vimrc command with \.

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