Visual Studio Code의 중복 줄
Visual Studio Code에서 줄을 복제하는 바로 가기를 찾으려고합니다 (1.3.1을 사용하고 있습니다). 명백한 CTRL+를 시도했지만 D작동하지 않는 것 같습니다.
파일 > 환경 설정 > 키보드 단축키를 클릭합니다 .
키보드 단축키를 검색 copyLinesDownAction
하거나copyLinesUpAction
보통은 SHIFT+ ALT+↓
Ubuntu 업데이트 :
우분투는 VSCode에서 볼 수있는 바로 가기를 숨기는 것 같습니다 (즉, 아마도 자체적으로 사용함). GitHub 에 대한 문제가 있습니다 .
우분투에서 작업하기 위해서는 자신 만의 단축키를 정의해야합니다. 예를 들어 ctrl+ shift+ alt+ j및 CTRL+ SHIFT+ ALT+ k를 사용하여 줄을 복사 하려면 다음 keybindings.json
과 같이 사용할 수 있습니다 .
[
{ "key": "ctrl+shift+alt+j", "command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly" },
{ "key": "ctrl+shift+alt+k", "command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly" }
]
복제는 아무것도 선택하지 않고 줄에 커서를두고 CTRL+ C및 CTRL+ 로 수행 할 수 있습니다 V.
OS에 따라 다음을 사용할 수 있습니다.
Windows :
Shift+ Alt+ ↓ 또는 Shift+ Alt+ ↑
맥:
Shift+ Option+ ↓또는 Shift+ Option+↑
리눅스 :
참고 : 일부 Linux 배포판의 경우 Numpad 화살표를 사용합니다.
Ctrl+ Shift+ Alt+ ↓또는 Ctrl+ Shift+ Alt+↑
키보드 단축키를 검색 copyLinesDownAction
하거나copyLinesUpAction
보통은 SHIFT+ ALT+↓
Use the following: Shift + Alt+(↓ or ↑)
Another 2 very usefull shortcuts are to move lines selected up and down, like sublime text does...
{
"key" : "ctrl+shift+down", "command" : "editor.action.moveLinesDownAction",
"when" : "editorTextFocus && !editorReadonly"
},
and
{
"key" : "ctrl+shift+up", "command" : "editor.action.moveLinesUpAction",
"when" : "editorTextFocus && !editorReadonly"
}
VC Code Version: 1.22.2 Go to: Code -> Preferences -> Keyboard Shortcuts (cmd + K; cms + S); Change (edit): "Add Selection To Next Find Match": "cmd + what you want" // for me this is "cmd + D" and I pur cmd + F; Go to "Copy Line Down": "cmd + D" //edit this and set cmd + D for example And for me that's all - I use mac;
Ubuntu :
- Duplicate Line Up : Ctrl + Alt + Shift + 8
- Duplicate Line Down : Ctrl + Alt + Shift + 2
참고URL : https://stackoverflow.com/questions/38727047/duplicate-line-in-visual-studio-code
'Programing' 카테고리의 다른 글
C #에서 "사용"블록은 언제 사용해야합니까? (0) | 2020.10.31 |
---|---|
Sublime Text 2 : 자바 스크립트 들여 쓰기 자동 수정? (0) | 2020.10.31 |
JSON 대 데이터베이스의 직렬화 된 배열 (0) | 2020.10.31 |
자바 : 객체가 null인지 확인하는 방법? (0) | 2020.10.31 |
BATCH 파일은 파일 또는 폴더를 요구합니다. (0) | 2020.10.31 |