diff --git a/README.md b/README.md index 9d86c28..75497bd 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 Ctrl + e -Go to the End of the line (End) +Go to the end of the line (End) Alt + b @@ -25,14 +25,14 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 Forward (right) one word -Ctrl + f -Forward one character - - Ctrl + b Backward one character +Ctrl + f +Forward one character + + Ctrl + xx Toggle between the start of line and current cursor position @@ -45,14 +45,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 Cut the line before the cursor position -Alt + Del -Delete the Word before the cursor - - -Alt + d -Delete the Word after the cursor - - Ctrl + d Delete character under the cursor @@ -61,14 +53,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 Delete character before the cursor (backspace) -Ctrl + w -Cut the Word before the cursor to the clipboard - - -Ctrl + k -Cut the Line after the cursor to the clipboard - - Alt + t Swap current word with previous @@ -81,10 +65,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 Swap the last two words before the cursor. -Ctrl + y -Paste the last thing to be cut (yank) - - Alt + u UPPER capitalize every character from the cursor to the end of the current word. @@ -106,6 +86,30 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0 +### Cut and paste (kill and yank) + + + + + + + + + + + + + + + + + + + + + +
Alt + DelCut the word (or part of word) before the cursor to the clipboard
Alt + dCut the word (or part of word) after the cursor to the clipboard
Ctrl + wCut to the previous whitespace before the cursor to the clipboard
Ctrl + kCut the line after the cursor to the clipboard
Ctrl + yPaste the last thing to be cut (yank)
+ ### History