Sublime Text2 Flashcards

1
Q

Command Palette

A

Ctrl+Shift+P

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Go to Any file

A

Ctrl+P then part of the file name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Go to symbol in a file

A

Ctrl+P then @symbol

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Go to line number in a file

A

Ctrl+P then :# (:1 :13)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Go to word in a file

A

Ctrl+P then #word or Ctrl+;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What would Ctrl+P then tp@rf do?

A

may take you to a function read_file within a file text_parser.py

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What would Ctrl+P then tp:100 do?

A

may take you to line 100 of the same file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Insert line after

A

Ctrl+Enter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Insert line before

A

Ctrl+Shift+Enter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Repeat last keyboard command

A

Ctrl+Y

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

(Un)Comment the current line

A

Ctrl+/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Block (Un)Comment the current Selection

A

Ctrl+Shift+/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Uppercase

A

Ctrl+K then Ctrl+U

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Lowercase

A

Ctrl+K then Ctrl+L

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Move line/selection up

A

Ctrl+Shift+Up

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Move line/selection down

A

Ctrl+Shift+Down

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Duplicate lines

A

Ctrl+Shift+D

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Join lines

A

Ctrl+J

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Delete word forwards

A

Ctrl+Del

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

Delete word backwards

A

Ctrl+Backspace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Delete line

A

Ctrl+Shift+K

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

Delete from cursor to end of line

A

Ctrl+K Ctrl+K

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

Delete from cursor to start of line

A

Ctrl+K Ctrl+Backspace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

Selection operations can be repeated multiple times - true or false

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Select line
Ctrl+L
26
Select word
Ctrl+D (Also for the multiple cursors)
27
Skip the word selection
Ctrl+K Ctrl+D
28
Select scope
Ctrl+Shift+Space
29
Select brackets
Ctrl+Shift+M
30
Select indentation
Ctrl+Shift+J
31
Select tag
Ctrl+Shift+A
32
Scroll to selection
Ctrl+K Ctrl+C
33
Jump to closing parenthesis (repeat to go to opening)
Ctrl+M
34
Jump to your last change (repeat to undo change)
Ctrl+U
35
Toggle bookmark
Ctrl+F2
36
Next bookmark
F2
37
Previous bookmark
Shift+F2
38
Select all bookmarks
Alt+F2
39
Find (multiple)
Ctrl+F
40
Find (multiple) inside the selection
Select the region and Ctrl+F
41
(after Ctrl+F) Find Next
F3
42
(after Ctrl+F) Find Previous
Shift+F3
43
(after Ctrl+F) Find All
Alt+Enter
44
Replace
Ctrl+H
45
(after Ctrl+H) Find Next
F3
46
(after Ctrl+H) Find Previous
Shift+F3
47
(after Ctrl+H) Find All
Alt+Enter
48
(after Ctrl+H) Replace
Ctrl+Shift+H
49
(after Ctrl+H) Replace All
Ctrl+Alt+Enter \
50
Find in files
Ctrl+Shift+F
51
(after Ctrl+Shift+F) Find Next
F3
52
(after Ctrl+Shift+F) Find Previous
Shift+F3
53
Code Folding
Ctrl+Shift+[
54
Code Unfolding
Ctrl+Shift+]
55
Code Unfold all
Ctrl+K, Ctrl+J
56
Record
Ctrl+Q
57
Playback
Ctrl+Shift+Q
58
Previous tab
Ctrl+PgUp
59
Next tab
Ctrl+PgDown
60
Switch to tab number
Alt+number
61
Ctrl+Shift+P
Command Palette
62
Ctrl+P then part of the file name
Go to Any file
63
Ctrl+P then @symbol
Go to symbol in a file
64
Ctrl+P then :# (:1 :13)
Go to line number in a file
65
Ctrl+P then #word or Ctrl+;
Go to word in a file
66
may take you to a function read\_file within a file text\_parser.py
What would Ctrl+P then tp@rf do?
67
may take you to line 100 of the same file.
What would Ctrl+P then tp:100 do?
68
Ctrl+Enter
Insert line after
69
Ctrl+Shift+Enter
Insert line before
70
Ctrl+Y
Repeat last keyboard command
71
Ctrl+/
(Un)Comment the current line
72
Ctrl+Shift+/
Block (Un)Comment the current Selection
73
Ctrl+K then Ctrl+U
Uppercase
74
Ctrl+K then Ctrl+L
Lowercase
75
Ctrl+Shift+Up
Move line/selection up
76
Ctrl+Shift+Down
Move line/selection down
77
Ctrl+Shift+D
Duplicate lines
78
Ctrl+J
Join lines
79
Ctrl+Del
Delete word forwards
80
Ctrl+Backspace
Delete word backwards
81
Ctrl+Shift+K
Delete line
82
Ctrl+K Ctrl+K
Delete from cursor to end of line
83
Ctrl+K Ctrl+Backspace
Delete from cursor to start of line
84
True
Selection operations can be repeated multiple times - true or false
85
Ctrl+L
Select line
86
Ctrl+D (Also
Select word
87
Ctrl+K Ctrl+D
Skip the word selection
88
Ctrl+Shift+Space
Select scope
89
Ctrl+Shift+M
Select brackets
90
Ctrl+Shift+J
Select indentation
91
Ctrl+Shift+A
Select tag
92
Ctrl+K Ctrl+C
Scroll to selection
93
Ctrl+M
Jump to closing parenthesis (repeat to go to opening)
94
Ctrl+U
Jump to your last change (repeat to undo change)
95
Ctrl+F2
Toggle bookmark
96
F2
Next bookmark
97
Shift+F2
Previous bookmark
98
Alt+F2
Select all bookmarks
99
Ctrl+F
Find (multiple)
100
Select the region and Ctrl+F
Find (multiple) inside the selection
101
F3
(after Ctrl+F) Find Next
102
Shift+F3
(after Ctrl+F) Find Previous
103
Alt+Enter
(after Ctrl+F) Find All
104
Ctrl+H
Replace
105
F3
(after Ctrl+H) Find Next
106
Shift+F3
(after Ctrl+H) Find Previous
107
Alt+Enter
(after Ctrl+H) Find All
108
Ctrl+Shift+H
(after Ctrl+H) Replace
109
Ctrl+Alt+Enter \
(after Ctrl+H) Replace All
110
Ctrl+Shift+F
Find in files
111
F3
(after Ctrl+Shift+F) Find Next
112
Shift+F3
(after Ctrl+Shift+F) Find Previous
113
Ctrl+Shift+[
Code Folding
114
Ctrl+Shift+]
Code Unfolding
115
Ctrl+K, Ctrl+J
Code Unfold all
116
Ctrl+Q
Record
117
Ctrl+Shift+Q
Playback
118
Ctrl+PgUp
Previous tab
119
Ctrl+PgDown
Next tab
120
Alt+number
Switch to tab number