Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion beginner.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Joy of Painting[1] with Bob Ross[2]
=
===

[1] - Vim
[2] - Shawn Biddle
Expand Down Expand Up @@ -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')
Expand Down Expand Up @@ -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]<verb><n(o)un> syntax
Expand Down Expand Up @@ -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 :