Chapter 1 Flashcards
What x command does
Delete character under cursor
What u command does
Undo changes
What dd command does
Performs a deletion of a line
What >{motion} command does
Increases the indentation
What do the G motion means
Go to the bottom of the file
What do the gg motion means
Go to the beginning of the file
What do the $ motion means
Go to the beginning of the line
What do the ^ motion means
Go to the end of the line
What c{motion} command does
Delete from cursor till end of the motion and inter insert mode
What C command does
Delete from cursor till end of the line and inter into insert mode
What s{motion} command does
Delete a character under the cursor and inter into insert mode
What S command does
Delete a line and inter into insert mode
What f/F{char} motions do
Find next/previous occurrence of the {char} on current line and place cursor on it
What t/T{char} motions do
Find next/previous occurrence of the {char} on current line and place cursor before it
What ;/, motions do
Repeat searches on the line forward/backward