在VS代码中创建多个光标的键盘快捷键是什么?


当前回答

对于Ubuntu用户

ALT+SHIFT+⬇ / ⬆

其他回答

在XFCE上,转到应用程序->设置->设置编辑器->xfwm4->easy_click(禁用值)

现在您可以使用Alt+Click插入光标

我还在“设置”->“窗口管理器”->“键盘”中禁用了L/R工作区(ctrl+alt+L/R)设置

在我的XFCE(4.12版)中,它位于“设置”->“窗口管理器调整”->“辅助功能”中。

有一个下拉字段Key用于抓取和移动窗口:,将其设置为None。

Alt+Click现在可以在VS代码中添加更多光标。

对于xfce用户,只需转到“设置”>“窗口管理器调整”>“可访问性”,即可将用于抓取和移动窗口的键更改为“超级”,如下图所示。

现在你可以用super代替alt.Wallah!!通过按住alt键并单击来创建多个光标。

你想要的东西没有约束。

唯一接近的是Ctrl+F2,它将一次选择所有选项。

您可以通过以下操作将其绑定到Ctrl+D:

单击“文件”>“首选项”>“键盘快捷键”您应该会看到一个窗格,其中包含当前绑定,并且右侧有一个自定义绑定列表在当前绑定中,搜索Ctrl+F2并复制整行并将其粘贴到右侧窗格中。您可能需要删除末尾的逗号,然后将Ctrl+F2更改为Ctrl+D,然后保存文件。

它应该看起来像这样:

// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+d",               "command": "editor.action.changeAll",
                                    "when": "editorTextFocus" }
]

https://code.visualstudio.com/Updates

新版本(Visual Studio 0.3.0)支持更多的多光标功能。

Multi-cursor
Here's multi-cursor improvements that we've made.

⌘D selects the word at the cursor, or the next occurrence of the current selection.
⌘K ⌘D moves the last added cursor to next occurrence of the current selection.
The two actions pick up the matchCase and matchWholeWord settings of the find widget.
⌘U undoes the last cursor action, so if you added one cursor too many or made a mistake, press ⌘U to return to the previous cursor state.
Insert cursor above (⌥⌘↑) and insert cursor below (⌥⌘↓) now reveals the last added cursor, making it easier to work with multi-cursors spanning more than one screen height (i.e., working with 300 lines while only 80 fit in the screen).

选择多光标的快捷方式更改为cmd+d(与Sublime Text.lol相同)

我们可以预期,下一个版本支持关于多光标的更方便的功能;)