VSCODE 환경설정

temp·2022년 1월 17일
0

Python

목록 보기
2/2

메모용

확장

  1. PYTHON
  2. remote-ssh
  3. rainbow_csv

단축키

탭 간 전환

  1. Ctrl + k + s(Keyboard Shortcuts)
  2. Open Keyboard Shortcut(json) - 첫번째 아이콘
  3. 아래 코드 붙혀넣기.
// 키 바인딩을 이 파일에 넣어서 기본값 재정의
[
    {
        "key": "ctrl+0",
        "command": "workbench.action.openLastEditorInGroup"
    },
    {
        "key": "ctrl+1",
        "command": "workbench.action.openEditorAtIndex1"
    },
    {
        "key": "ctrl+2",
        "command": "workbench.action.openEditorAtIndex2"
    },
    {
        "key": "ctrl+3",
        "command": "workbench.action.openEditorAtIndex3"
    },
    {
        "key": "ctrl+4",
        "command": "workbench.action.openEditorAtIndex4"
    },
    {
        "key": "ctrl+5",
        "command": "workbench.action.openEditorAtIndex5"
    },
    {
        "key": "ctrl+6",
        "command": "workbench.action.openEditorAtIndex6"
    },
    {
        "key": "ctrl+7",
        "command": "workbench.action.openEditorAtIndex7"
    },
    {
        "key": "ctrl+8",
        "command": "workbench.action.openEditorAtIndex8"
    }
]

참고 : https://bba-jin.tistory.com/34

0개의 댓글