-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIDE.txt
More file actions
78 lines (52 loc) · 1.42 KB
/
IDE.txt
File metadata and controls
78 lines (52 loc) · 1.42 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@@@@@@@@@@@@@@@@@@@@@@@ PyCharm @@@@@@@@@@@@@@@@@@@@@@@@@@@
Go to Type Cmd + O
Go to File Shift + Cmd + O
Recent Files Cmd + E
Switch View or Keymap ^`
Search Everywhere Double Shift
@@@@@@@@@@@@@@@@@@@@@@@ VS Code @@@@@@@@@@@@@@@@@@@@@@@@@@@
Started using VSCode. Notes on the editor, cheat sheet, configs etc.
// open a directory in VS Code
$ code <directory-name>
// Command Palette
cmd + p ctrl + p
// Terminal
ctrl + ` ctrl + `
// All methods, properties etc in a file
- Type @ in command palette
// Zen mode
cmd + k,z ctrl + k,z
// Symbols in currently open file
cmd + O
// Code folding
Fold folds the innermost uncollapsed region at the cursor:
Ctrl + Shift + [ on Windows
⌥ + ⌘ + [ on macOS
Unfold unfolds the collapsed region at the cursor:
Ctrl + Shift + ] on Windows
⌥ + ⌘ + ] on macOS
Fold All folds all region in the editor:
Ctrl + K, Ctrl + 0 (zero) on Windows
⌘ + K, ⌘ + 0 (zero) on macOS
Unfold All unfolds all regions in the editor:
Ctrl + K, Ctrl + J on Windows
⌘ + K, ⌘ + J on macOS
Explorer (hide and show):
cmd + b
ctrl + b
Reference:
https://stackoverflow.com/a/30077543/630866
Plugins/Extensions
---
- Code Runner
- Vim
- C/C++
- Python
Searching Files
====
Find Files
Find Directory
Searching Text
====
Search text in current file /text (Vim equivalent)
Search text in current dir