sublime文本退出多个选择状态与键盘

时间:2014-08-27 10:01:22

标签: sublimetext sublimetext3

我不知道何时尝试使用键盘退出sublime文本中的多个选择状态。

我不想使用鼠标。

2 个答案:

答案 0 :(得分:2)

我找到了解决问题的方法。

答案 1 :(得分:0)

即使从Sublime Text 3.2.1开始,默认情况下也很难退出多行模式。除了切换到老式模式,您还可以绑定一个新键以退出多行模式,我发现这是一个更好的解决方案,因为转义已经具有其他可能会发生冲突的功能。

相关的(默认)键绑定是:

    { "keys": ["ctrl+shift+l"], "command": "split_selection_into_lines" },
    { "keys": ["escape"], "command": "single_selection", "context":
        [
            { "key": "num_selections", "operator": "not_equal", "operand": 1 }
        ]
    }

我添加了

    { "keys": ["ctrl+shift+;"], "command": "single_selection", "context":
        [
            { "key": "num_selections", "operator": "not_equal", "operand": 1 }
        ]
    }

绑定到我的用户绑定,但您可以选择自己喜欢的任意组合键。