forked from guifre/notes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintellij.txt
141 lines (124 loc) · 2.69 KB
/
intellij.txt
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
*Shortcuts*
Refactor
Move element (class/field/static method/...)
**F6**
Rename
*Shift + F6*
Refactor
*CMD + F6*
Rename
*Shift + F6*
Move to a constant
*CMD + SHIFT + C*
Move to a field
*CMD + SHIFT + F*
Move to a parameter
*CMD + SHIFT + P*
Move to a method
*CMD + SHIFT + M*
Move to a local variable
*CMD + SHIFT + V*
Finish refactor
*ALT + R*
Compile all modules
*ALT + F9*
Move
Move line up down
*ALT + SHIFT + UP/DOWN*
Move line up down
*ALT + SHIFT + UP/DOWN*
Move block up down
*CMD + SHIFT + UP/DOWN*
Move block up down
*CMD + SHIFT + UP/DOWN*
Join line
*ALT + SHIFT + J*
Deletes lin
*CMD + backspace*
Move selected text to a scratch fil
*CMD + shift + Ne*
Find usages
*ALT + F7*
Go to declaration
*CMD + B*
Select/deselect within string/method invocation
*ALT + UP/DOWN*
Enable/disable break point
*CMD + F8*
Menus
Menu of recently opened files
*CMD + E*
Menu to create constructor, getters, override methods, create tests
*CMD + N*
Create new test class
*CMD + shift + T*
Git
Git commit
*CMD + K*
Git pull
*CMD + T*
Revert file
*CMD + ALT+ Z*
Find
Replace
*CMD + R*
Find
*CMD + F*
Open
Open class by name
*CMD + O*
Open file by name
*CMD + SHIFT + O*
Find action by name
*CMD + SHIFT + A*
Go to tab with that number (debug, run, version control, ...)
*CMD + NUMBER (3-9)*
Shows shortcuts
*CMD + J*
Errors
Suggestions about fixing compiling error
*ALT + ENTER*
Find reference in classpath
*CTRL + SPACE*
Run test
Run last run test
*CTRL + R*
Run selected test / test class / files.
*CTRL + SHIFT + R*
Debug last test
*CTRL + D*
Debug selected test / test class / files.
*CTRL + SHIFT + D*
Move
Go to start line / end line
*FN + left/right*
Move word
*ALT + le*ft/right
Goto line
*CMD + L*
Go to next error/warning
*F2*
Go to next element in list
*CMD + alt + up/down*
MultiCursor
Select next that matches current selection
*CTRL + G*
Deselect previous next that matches current selection
*CTRL + SHIFT + G*
Select all that matches current selection
*CTRL + CMD + G*
Multi line cursor
*ALT + DOWN*
Duplicate selected text
*CMD + D*
Delete line
*CMD + backspace*
Change case of selected text
*CMD + shift + U*
Autocomplete
Finishes line (adds bracket and semicolon)
*Tab *
Finish if (adds bracket, new line and curly bracket)
*Shift + ALT + Enter*
Public static final
*psf + enter*