美文网首页
mac sublime HTMLBeautify

mac sublime HTMLBeautify

作者: 凶柿 | 来源:发表于2018-01-04 11:20 被阅读0次

打开package control 或者直接快捷键command+shift+p


image.png

去到install package


image.png

搜索HTMLBeautify, 点击自动安装,因为本地已经安装了,所以没有显示


image.png

设置快捷键
1.查看default


image.png

打开之后长这个样子


image.png
下面是官方对每个参数定义的解释,可以自己更改
image.png
2.自定义快捷键

进入key bindings


image.png
会打开两个文件:default & user, 在user里改
粘上这一段,“keys”是你自己想设置的快捷键
{
"keys": ["ctrl+f"], // create your own key command combination here!
"command": "html_beautify", // command that executes html_beautify
"context": [{
// these options ensure that the command is executed in the right files/context
"key": "selector",
"operator": "equal",

"operand": "text.html,text.html.twig,text.twig,source.html,source.html.twig,source.twig"
}]
}
okay,结束,去试下吧

相关文章

网友评论

      本文标题:mac sublime HTMLBeautify

      本文链接:https://www.haomeiwen.com/subject/hqxrnxtx.html