2017-03-07 70 views
0

VS演播室的快捷方式是Alt+Click。但我的Alt鍵不起作用 如何將該快捷鍵切換到Ctrl +單擊? 我沒有在設置中找到該快捷方式,也許還有一種方法可以做到這一點?Visual Studio代碼多行選擇

回答

0

不,沒有辦法重新配置它,雖然它正在討論這個github issue

但是,還有其他方法可以添加多個遊標(這是alt + click在Visual Studio代碼中執行的操作),儘管它們並不完全符合您的需求。這些是爲增加光標的命令默認鍵綁定:

{ "key": "ctrl+alt+up",   "command": "editor.action.insertCursorAbove", 
            "when": "editorTextFocus" }, 
{ "key": "shift+alt+i",   "command": "editor.action.insertCursorAtEndOfEachLineSelected", 
            "when": "editorTextFocus" }, 
{ "key": "ctrl+alt+down",   "command": "editor.action.insertCursorBelow", 
            "when": "editorTextFocus" }, 
+0

所有的人都使用'Alt'按鈕,這是我的鍵盤上破) –

+0

那些可以被重新映射到任何你想要的組合鍵。 – Llewey

相關問題