像在 Textmate 中一样使用 VIM 格式化 CSS
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以相当轻松地集成 CSS Tidy。由于您来自 TextMate,我假设您使用的是 Mac。如果您尚未安装 CSS tidy,我建议您通过包管理器安装它,例如优秀的 Homebrew。
安装完成后,您可以通过将以下内容添加到您的
~/.vimrc
中,允许 Vim 对=
命令使用 CSS tidy,该命令会自动格式化代码:打开一个 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
: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 withgg=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\
.