0

我正在使用Sublime CodeIntel我喜欢的autocomplete,但是当我尝试插入标签时它会弹出并插入单词。我希望制表符始终插入制表符,除非光标之前的字符是字母。

我认为这可以通过用户keymap使用 tab 键来查看上下文来完成,但我不知道该怎么做。

4

3 回答 3

1

像下面这样的东西应该可以工作。您可能需要使用键绑定的顺序。将以下内容添加到您的用户键绑定中

 {
    "keys": ["tab"], "command": "insert", "args": {"characters": "\t" }, "context": [
        { "key": "preceding_text", "operator": "regex_contains", "operand": "[^a-zA-Z]$", "match_all": true }
    ]
 }

请注意,我没有安装 SublimeCodeIntel,所以不确定它会如何表现。

作为一个很好的调试技巧,进入sublime.log_commands(True)ST 控制台以查看正在为特定键绑定执行的命令。在确认命令是否按预期运行时可能很有用。

于 2015-03-29T02:28:49.067 回答
0

如果你在 Windows 上,一个快速的解决方法是使用 Autohotkey。您可以将任何键分配给 4 个空格,如下所示

`::
Send {Space 4} ; when pressed ` enters four times Space bar
Return
于 2015-03-28T13:06:56.410 回答
0

试试这个...覆盖制表键以用作缩进键并仅插入制表符

首选项 > 键绑定

[
    { "keys": ["tab"], "command": "insert", "args": {"characters": "\t"} },
    { "keys": ["tab"], "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 }
        ]
    },
    { "keys": ["tab"], "command": "indent", "context":
        [
            { "key": "text", "operator": "regex_contains", "operand": "\n" }
        ]
    },
    { "keys": ["tab"], "command": "next_field", "context":
        [
            { "key": "has_next_field", "operator": "equal", "operand": true }
        ]
    }
]
于 2017-09-16T17:50:01.240 回答