Programing

Visual Studio Code의 중복 줄

lottogame 2020. 10. 31. 09:12
반응형

Visual Studio Code의 중복 줄


Visual Studio Code에서 줄을 복제하는 바로 가기를 찾으려고합니다 (1.3.1을 사용하고 있습니다). 명백한 CTRL+를 시도했지만 D작동하지 않는 것 같습니다.


파일 > 환경 설정 > 키보드 단축키를 클릭합니다 .

여기에 이미지 설명 입력

키보드 단축키를 검색 copyLinesDownAction하거나copyLinesUpAction

보통은 SHIFT+ ALT+


Ubuntu 업데이트 :

우분투는 VSCode에서 볼 수있는 바로 가기를 숨기는 것 같습니다 (즉, 아마도 자체적으로 사용함). GitHub 에 대한 문제가 있습니다 .

우분투에서 작업하기 위해서는 자신 만의 단축키를 정의해야합니다. 예를 들어 ctrl+ shift+ alt+ jCTRL+ 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+ CCTRL+ 로 수행 할 수 있습니다 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

반응형