From d41b6bb7dae56133a7cb194692c840e168e30b8a Mon Sep 17 00:00:00 2001 From: Julien Le Coupanec Date: Sun, 1 Nov 2020 18:27:21 +0100 Subject: [PATCH] docs(vim): updates --- tools/vim.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/vim.txt b/tools/vim.txt index 780d6a8..682e0c7 100644 --- a/tools/vim.txt +++ b/tools/vim.txt @@ -87,8 +87,7 @@ 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) +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) @@ -120,8 +119,7 @@ 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) +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