我如何在 sublime 插件 'tag' 中为文档的自动格式化标签创建快捷方式?
how can i create a short cut for auto-format tags on document in sublime plugin 'tag'?
我想在 Sublime 插件 'Tag' 中为 'Auto-Format Tags on Document' 创建一个快捷方式,当我从 Edit -> Tag -> Auto-Format Tags 中选择此功能时它可以工作在文档 上。
但是我在键绑定中添加了这段代码
{ "keys": [ "command+alt+s" ], "command": "Auto-Format Tags on Document" }
没用,这个组合快捷键可用。
有人可以帮我吗?
在 mac 上,您需要在您的键绑定文件中将 ⌘ 键引用为 super。
然后,如果您查看 键绑定 - 默认文件 ,您会看到此组合已被采用:
{ "keys": ["super+alt+s"], "command": "save_all" },
如果您不想丢失此快捷方式,则需要在 键绑定 - 用户文件 中更改此值 :D
所有文档都可以在 sublimetext 网站上作为非官方文档获得:go to keybinding documentation.
Modifiers
- shift
- ctrl
- alt
- super (Windows key, Command key...)
应该可以解决您的问题:)
For windows user : {"keys": ["f7"], "command": "tag_indent_document"},
很明显,您可以使用自己的组合键代替 f7 ;)
额外: 如果您搜索在线工具来检查未关闭 html 标签
我想在 Sublime 插件 'Tag' 中为 'Auto-Format Tags on Document' 创建一个快捷方式,当我从 Edit -> Tag -> Auto-Format Tags 中选择此功能时它可以工作在文档 上。
但是我在键绑定中添加了这段代码
{ "keys": [ "command+alt+s" ], "command": "Auto-Format Tags on Document" }
没用,这个组合快捷键可用。
有人可以帮我吗?
在 mac 上,您需要在您的键绑定文件中将 ⌘ 键引用为 super。
然后,如果您查看 键绑定 - 默认文件 ,您会看到此组合已被采用:
{ "keys": ["super+alt+s"], "command": "save_all" },
如果您不想丢失此快捷方式,则需要在 键绑定 - 用户文件 中更改此值 :D
所有文档都可以在 sublimetext 网站上作为非官方文档获得:go to keybinding documentation.
Modifiers
- shift
- ctrl
- alt
- super (Windows key, Command key...)
应该可以解决您的问题:)
For windows user :
{"keys": ["f7"], "command": "tag_indent_document"},
很明显,您可以使用自己的组合键代替 f7 ;)
额外: 如果您搜索在线工具来检查未关闭 html 标签