-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCode_Notes.txt
More file actions
35 lines (28 loc) · 968 Bytes
/
VSCode_Notes.txt
File metadata and controls
35 lines (28 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---------------------------------
Visual Studio Code (VSCode) Notes
---------------------------------
Install
-------
- https://code.visualstudio.com/docs/setup/mac
To run via CLI ("code")
-----------------------
- create symlink
(/usr/local/bin)$ ln -s /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code code
Add Useful Extensions
---------------------
- extensions
- All Autocomplete (Atishay Jain)
- Vim (vscodevim)
Set Up Useful Keyboard Shortcuts
--------------------------------
- keyboard shortcuts
- File: Focus on files Explorer | Ctrl-H | When: editorTextFocus
- Terminal: Focus Terminal | Ctrl-J | When: editorTextFocus
- View: Focus Active Editor Group | Ctrl-K | When: terminalFocus
Vim Extension
-------------
# enable key-repeating
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
# reset key-repeating
defaults delete -g ApplePressAndHoldEnabled
tags: code, vscode