From 322b90b353f6a3ba881029a3ebad71f721ceed9a Mon Sep 17 00:00:00 2001 From: dinaelhanan Date: Thu, 19 Jul 2018 20:10:04 -0400 Subject: [PATCH] creats readme including vim tutorial --- readme.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 readme.txt diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..4301b1c --- /dev/null +++ b/readme.txt @@ -0,0 +1,14 @@ +"Hello!" +To get out of command mode in Vim, hit I. +Hit esc to get to command mode +Command mode controls: +Press h to go left, l to go right, k for up, j for down +e = end of word +b = beginning of word +x = delete text +undo is u +redo is ctrl + r +In command mode, write :wq to "write"/save and quit +:q! is to quit without changes. +:q is to quit when you didn't make changes +