- 윈도우의 경우 Ctrl + 스페이스바를 누르면 사용할 수 있다.
- 맥의 경우 아래와 같이 설정한다.
- 우선 File > Preferences > Keyboard Shortcuts을 연다.
- Keyboard Shortcuts 화면의 오른쪽 상단위에 {} 을 눌러 keybindings.json 파일을 연다.
- keybindings.json 파일에 다음과 같은 내용을 입력한다.
[ { "key": "alt+space", "command": "editor.action.triggerSuggest", "when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly" }, { "key": "alt+space", "command": "toggleSuggestionDetails", "when": "editorTextFocus && suggestWidgetVisible" }, { "key": "ctrl+alt+space", "command": "toggleSuggestionFocus", "when": "editorTextFocus && suggestWidgetVisible" } ]
- 맥의 command + space(Spotlight 검색) 기능과 겹치기 때문에 alt + space로 수정하였다.
- 우선 File > Preferences > Keyboard Shortcuts을 연다.
'Visual Studio Code' 카테고리의 다른 글
[Visual Studio Code] 마크다운 편집창 미리보기 (0) | 2019.08.14 |
---|---|
[Visual Studio Code] 프로젝트 폴더 추가 (0) | 2019.08.14 |
[Visual Studio Code] 폴더 아이콘 테마변경 (0) | 2019.08.14 |