From d48fa3e3eb9ac0824d9becab36506c535ff98929 Mon Sep 17 00:00:00 2001 From: Nathan Steel Date: Thu, 12 Aug 2021 11:20:45 +0100 Subject: [PATCH] Make some more basic changes --- vim.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vim.md b/vim.md index 5c6f5f5..d01dc34 100644 --- a/vim.md +++ b/vim.md @@ -1,3 +1,6 @@ +This is a reference written by my as I'm using VIM +A good reference to check for more would be: [This](https://gist.github.com/tuxfight3r/0dca25825d9f2608714b) + # Vim Reference This is intended as a brief reference for beginners. @@ -30,8 +33,8 @@ will put you into command mode `:w` - Write to file `:q` - Quit file -`Ctrl + ZZ` - Write and quit (`:wq`) -`Ctrl + ZQ` - Force quit (`:q!`) +`ZZ` - Write and quit (`:wq`) +`ZQ` - Force quit (`:q!`) # Motions for Movement @@ -138,6 +141,7 @@ Yet again, this command can make use of, and gets its power from motions! `cw` - Change word `c$` - Change contents to the end of the line `ci(` - Change inside ( { " +`caw` - Change around word. Alternative to `b cw` ## Substitute