1
A
回答
0
你可以做列選擇多種方式,
正如您所指出的,將光標移動到第一列按的第一個字開始(左)和持有Alt + Shift,然後右箭頭選擇頂行 (嘗試Ctrl + Shift如果以前的組合鍵不起作用)。按下按鍵繼續選擇列,按向下鍵鍵。
將光標移動到第一列 新聞的第一個字開始(左)和持有ALT + SHIFT,然後反覆按向下箭頭增添更多遊標。 (VSCode的某些版本也使用按Ctrl + Shift代替) 一旦光標加入通過簡單Shift +向右箭頭
按Ctrl + d選擇字的下一個出現目前選擇的字在光標下。
按Ctrl + Shift + L選擇目前正在光標選擇的字的所有出現,不管那些詞語是上述的光標下面的。
0
默認情況下,這是按Ctrl + Shift + Alt +箭頭。
如果你想重新綁定到與Visual Studio對齊,把這個在您的keybindings.json
:
{
"key": "shift+alt+down",
"command": "cursorColumnSelectDown",
"when": "editorTextFocus"
},
{
"key": "shift+alt+left",
"command": "cursorColumnSelectLeft",
"when": "editorTextFocus"
},
{
"key": "shift+alt+pagedown",
"command": "cursorColumnSelectPageDown",
"when": "editorTextFocus"
},
{
"key": "shift+alt+pageup",
"command": "cursorColumnSelectPageUp",
"when": "editorTextFocus"
},
{
"key": "shift+alt+right",
"command": "cursorColumnSelectRight",
"when": "editorTextFocus"
},
{
"key": "shift+alt+up",
"command": "cursorColumnSelectUp",
"when": "editorTextFocus"
}
這將與該複製線或生長/智能選擇縮小默認功能衝突,這樣你就可以添加這個交換那些需要控制:
,
{
"key": "shift+alt+up",
"command": "cursorColumnSelectUp",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+alt+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+right",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+alt+left",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
}
相關問題
- 1. vscode的鍵盤快捷鍵選項列表
- 2. VSCode重映射鍵盤快捷鍵
- 3. iPad鍵盤隱藏選擇列表
- 4. Visual Studio/R#鍵盤快捷鍵:選擇帶或不帶引號的字符串
- 5. IOS UISegmentedController選擇鍵盤
- 6. 非GPL帶鍵盤導航的Swing日期選擇器?
- 7. 帶十進制小鍵盤的鍵盤
- 8. 數字鍵盤+鍵選擇在Visual Studio
- 9. 禁用鍵盤上的國際鍵盤選擇按鈕
- 10. 使用Javascript(帶鍵盤?)Div Div內部文本選擇
- 11. vscode如何添加用於分段選定行的鍵盤快捷鍵
- 12. Jquery .on()鍵盤選擇器篩選
- 13. 鍵盤帶有日期選取器
- 14. QTreeWidgetItem使用鍵盤的多重選擇
- 15. 多選擇的iOS自定義鍵盤
- 16. datagridview鍵盤上的多個選擇c#
- 17. 鍵盤快捷鍵循環瀏覽vscode中的更改
- 18. VSCode:用於修改用戶設置的鍵盤快捷鍵
- 19. 鍵盤快捷鍵在Mac上的VSCode中切換焦點?
- 20. NumberPicker不帶鍵盤
- 21. 如何使用鍵盤上的ENTER鍵選擇單選按鈕
- 22. 帶有cocos2d鍵盤的TextField!
- 23. vscode全球鍵盤快捷鍵擴展覆蓋
- 24. 鍵盤選擇不在safari中工作
- 25. 選擇文本,並與鍵盤映射
- 26. IOS鍵盤輸入選擇器
- 27. 選擇鍵盤或拾取器?
- 28. 鍵盤超越日期選擇器
- 29. 訪問jqtransform使用鍵盤選擇
- 30. 鍵盤輸入與選擇案例
他們沒有在這裏工作。我仍然無法像普通的Visual Studio ALT +箭頭那樣做。 –
@AndréLuizCarletti你可能有一箇舊版本的VSCode。 –
我使用的是版本1.11.2。日期2017-04-13。我需要任何特殊的插件來使捷徑工作? –