From ef808c91de965a3d8f1eea44caba40befabb1f7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A0=20Farr=C3=A9s?= Date: Wed, 7 Feb 2018 18:01:27 +0100 Subject: [PATCH] Use C instead of c$ to change to end of the line --- tools/vim.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vim.txt b/tools/vim.txt index cac6e7c..41e5a7d 100644 --- a/tools/vim.txt +++ b/tools/vim.txt @@ -86,7 +86,7 @@ R enter Insert mode, replacing characters rather than insertin 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 +C change (replace) to the end of line 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)