• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/32

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

32 Cards in this Set

  • Front
  • Back
:w
Save buffer.
:q
Quit buffer.
:e
Open a file in buffer.
:split
Horizontal split.
:vsplit
Vertical split.
Control + ww
Change between splits.
/pattern
Search for pattern.
n
Next occurrence of pattern.
N
Previous occurrence of pattern.
A
Append, goes to the end of line in insert mode.
r
Replaces a single character.
y
Yank (copy).
d
Cut.
p
Paste.
x
Delete.
u
Undo.
W
Jump by word.
B
Jump backwards by word.
Control + f
Forward a full page (page down).
Control + b
Backward a full page (page up).
gg
Start of buffer.
Shift + g
End of buffer.
:bd
Close current buffer.
:ls
List all open buffers.
:bX
Change to buffer number X.
Control + r
Redo last change.
Shift + d
Cut from cursor to end of line.
dw
Delete word.
d$
Delete from cursor to end of line.
U
Undo whole line.
Shift + i
Insert at beginning of line.
:cd
Change directory. Enables autocompletion for :e.