1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-12-18 16:41:58 +00:00

Use C instead of c$ to change to end of the line

This commit is contained in:
Adrià Farrés 2018-02-07 18:01:27 +01:00 committed by GitHub
parent 5791c29ab6
commit ef808c91de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ R enter Insert mode, replacing characters rather than insertin
J join line below to the current one J join line below to the current one
cc change (replace) an entire line cc change (replace) an entire line
cw change (replace) to the end of word 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 character at cursor and substitute text
S delete line at cursor and substitute text (same as cc) S delete line at cursor and substitute text (same as cc)
xp transpose two letters (delete and paste, technically) xp transpose two letters (delete and paste, technically)