diff --git a/beginner.md b/beginner.md index d9b3c01..b3e8d7c 100644 --- a/beginner.md +++ b/beginner.md @@ -1,5 +1,5 @@ Joy of Painting[1] with Bob Ross[2] -= +=== [1] - Vim [2] - Shawn Biddle @@ -30,6 +30,16 @@ Pen to the page O - enter insert mode on the above line C - Delete from cursor to end of line and begin insert +Changing modes +=== + + Insert -> Normal : ESC/CTRL [ + Insert -> Command : (Insert -> Normal) -> : + + Normal -> COmmand : : + Normal -> Insert Insert : iIsScCoO + Command -> Normal : Enter + This is a test sentence (Next class will cover 'c') @@ -67,6 +77,9 @@ Basics: wWbBeE B - Backward to the next beginning of a WORD e - Forward to the next end of word E - Forward to the next end of WORD + 0 - Move you to the zeroth character of the line + $ - Move you to the last character of the line + ^ - First non-blank character of the line Slightly less basic: fFtT All follow [(n)um] syntax @@ -98,5 +111,12 @@ Copy/Paste y - Yank. Example: yw (yank word) p - paste after cursor P - paste before cursor + v - Visual selection + +Undoing your changes +=== + + u - undo stuff + Ctrl-R - redo stuff # vim: set syn=mkd :