From e6cdab4c5d4150790d54baa2d42773b862c09aec Mon Sep 17 00:00:00 2001 From: louisboilard Date: Sat, 31 Oct 2020 21:14:48 -0400 Subject: [PATCH] Added change/delete command and zz command. --- tools/vim.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/vim.txt b/tools/vim.txt index 2a55240..780d6a8 100644 --- a/tools/vim.txt +++ b/tools/vim.txt @@ -87,6 +87,8 @@ J join line below to the current one cc change (replace) an entire line cw change (replace) to the end of word C change (replace) to the end of line +ct' change (replace) until the ' character (can change ' for +any character) s delete character at cursor and substitute text S delete line at cursor and substitute text (same as cc) xp transpose two letters (delete and paste, technically) @@ -118,6 +120,8 @@ x delete current character X delete previous character dw delete the current word dd delete (cut) a line +dt' delete until the next ' character on the line (replace ' +by any character) D delete from cursor to end of line :[range]d delete [range] lines @@ -279,6 +283,7 @@ CTRL-w < increase window width CTRL-w > decrease window width CTRL-w = equal window CTRL-w o close other windows +zz Centers the window to the current line ##############################################################################