一个简单的问题,我刚开始在 Windows 上使用 Sublime Text 2 进行编码,我想更改一些小东西,比如当我编写 if 语句(例如 if (i > 0))时,在我输入“0”后立即,我的光标介于“0”和“)”之间,所以如果我按回车键,我希望它跳到“)”之后。我习惯了日食,所以我想知道如何获得模仿日食的设置。我已尝试编辑设置文本文件,但找不到我要查找的内容。
问问题
150 次
1 回答
5
尝试将以下内容添加到您的用户键绑定中(可通过 访问Preferences -> Key Bindings - User
)
{ "keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true},
"context": [
{ "key": "selection_empty", "operator": "equal", "operand": true },
{ "key": "preceding_text", "operator": "not_regex_match", "operand": "[[:space:]]*", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^[\\)]", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }
]}
编辑:更新正则表达式以仅匹配括号。
于 2013-03-18T01:57:17.383 回答