• 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/11

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;

11 Cards in this Set

  • Front
  • Back
i
Insert at cursor
a
Insert 1 char after cursor
:e filename
Open a new file. You can use the Tab key for automatic file name completion, just like at the shell command prompt.
:w filename
Save changes to a file. If you don't specify a file name, Vim saves as the file name you were editing. For saving the file under a different name, specify the file name.
:q
Quit Vim. If you have unsaved changes, Vim refuses to exit.
:q!
Exit Vim without saving changes.
:wq
Write the file and exit.
:x
Almost the same as :wq, write the file and exit if you've made changes to the file. If you haven't made any changes to the file, Vim exits without writing the file.
j or Up Arrow
Move the cursor up one line.
k or Down Arrow
Down one line.
h or Left Arrow
Left one character.