【发布时间】:2017-08-21 00:54:43
【问题描述】:
我刚刚从 Sublime 过渡到 VS Code,我很喜欢它。想知道是否有等效的组合,或设置它们的方法,用于跳转/选择行块,向下/向上到下一个空白行。这就是我在 ST3 中的样子:
{"keys": ["ctrl+shift+["], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}},
{"keys": ["ctrl+shift+]"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}},
{"keys": ["ctrl+{"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": false, "extend": true}},
{"keys": ["ctrl+}"], "command": "move", "args": {"by": "stops", "empty_line": true, "forward": true, "extend": true}},
【问题讨论】:
标签: visual-studio-code vscode-settings