我尝试使用以下方法在Sublime中设置Reindent
的快捷方式:
{ "keys": ["ctrl+alt+i"], "command": "reindent", "context":
[
{ "key": "setting.auto_indent", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^$", "match_all": true },
{ "key": "following_text", "operator": "regex_match", "operand": "^$", "match_all": true }
]
},
因此,现在我希望Ctrl+Alt+i
重新缩进所选代码。我检查是否通过重新打开保存了具有键绑定的文件。
但是当我全选并按下Ctrl+Alt+i
时,不会缩进。
我还检查了按键绑定是否没有出现在Reindent
按钮上。
我试图重新启动编辑器,但没有帮助。
该问题该怎么办?谢谢。