- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
49 Cards in this Set
- Front
- Back
|
:x
|
exit,saving changes
|
|
:q
|
exit as long as no change
|
|
ZZ
|
exit and save changes
|
|
:q!
|
exit and ignore changes
|
|
i
|
insert before cursor
|
|
I
|
insert before line
|
|
a
|
append after cursor
|
|
A
|
append after line
|
|
o
|
open a new line after cursor
|
|
O
|
open a new line before cursor
|
|
r
|
replace one char
|
|
R
|
replace many chars
|
|
h
|
move left
|
|
j
|
move down
|
|
k
|
move up
|
|
l
|
move right
|
|
w
|
move to next word
|
|
W
|
move to next blank delimited word
|
|
b
|
move to the beginning of the word
|
|
B
|
move to the beginning of blank delimited word
|
|
e
|
move to the end of the word
|
|
E
|
move to the end of blank delimited word
|
|
(
|
move a sentence back
|
|
)
|
move a sentence forward
|
|
{
|
move a paragraph back
|
|
}
|
move a paragraph forward
|
|
0
|
move to beginning of the line
|
|
$
|
move to the end of the line
|
|
1G
|
move to the first line of the file
|
|
nG
|
move to nth line of the file
|
|
:n
|
move the nth line of the file
|
|
fc
|
move forward to c
|
|
Fc
|
move backward to c
|
|
H
|
move to top of screen
|
|
M
|
move to middle of screen
|
|
L
|
move to bottom of screen
|
|
%
|
move to associated (),{}, or []
|
|
x
|
del char to the right of cursor
|
|
X
|
delete char to the left of cursor
|
|
D
|
del to the end of the line
|
|
dd
|
del current line
|
|
:d
|
del current line
|
|
yy
|
yank the current line
|
|
:y
|
yank the current line
|
|
cw
|
delete and change a word
|
|
C
|
change to the end of the line
|
|
cc
|
change the whole line
|
|
p
|
put after the position or after the line
|
|
P
|
put before the position or before the line
|