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

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;

29 Cards in this Set

  • Front
  • Back
How do you show the list of buffers
:ls
How cycle to next buffer?
:bn
How cycle to previous buffer?
:bp
How do you switch to the last opened buffer
CTRL ^
What line can go in vimrc so vim doesn't mind unsaved buffers?
set hidden
How do you restore the original file from within a buffer?
:e!
How to forcibly remove a buffer from the buffer list and discard changes?
:bd!
How quit from from discarding all changes?
:q!
how to split window horizontally
ctrl-w s
how to split window vertically
ctrl-w v
how to split horizontally loading new file
:sp[lit] filename
how to split vertically loading new file
:vsp[lit] filename
how to close currently active window
:q!
how to close all windows except the current one
:on[ly]
cycle to the next open window
ctrl-w w
focus to window to the left
ctrl-w h
focus to window beneath
ctrl-w j
focus to window above
ctrl-w k
focus to window to the right
ctrl-w l
increase height of current window
ctrl-w +
decrease height of current window
ctrl-w -
maximize height of current window
ctrl-w _
maximize width of current window
ctrl-w |
rotate all windows
ctrl-w r
exchange current window with neighbor
ctrl-w x
move window to far left
ctrl-w H
move window to far right
ctrl-w L
move window to bottom
ctrl-w J
move window to top
ctrl-w K