Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 29 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
</tr>
<tr>
<td>Ctrl + e</td>
<td>Go to the End of the line (End)</td>
<td>Go to the end of the line (End)</td>
</tr>
<tr>
<td>Alt + b</td>
Expand All @@ -25,14 +25,14 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
<td>Forward (right) one word</td>
</tr>
<tr>
<td>Ctrl + f</td>
<td>Forward one character</td>
</tr>
<tr>
<td>Ctrl + b</td>
<td>Backward one character</td>
</tr>
<tr>
<td>Ctrl + f</td>
<td>Forward one character</td>
</tr>
<tr>
<td>Ctrl + xx</td>
<td>Toggle between the start of line and current cursor position</td>
</tr>
Expand All @@ -45,14 +45,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
<td>Cut the line before the cursor position</td>
</tr>
<tr>
<td>Alt + Del</td>
<td>Delete the Word before the cursor</td>
</tr>
<tr>
<td>Alt + d</td>
<td>Delete the Word after the cursor</td>
</tr>
<tr>
<td>Ctrl + d</td>
<td>Delete character under the cursor</td>
</tr>
Expand All @@ -61,14 +53,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
<td>Delete character before the cursor (backspace)</td>
</tr>
<tr>
<td>Ctrl + w</td>
<td>Cut the Word before the cursor to the clipboard</td>
</tr>
<tr>
<td>Ctrl + k</td>
<td>Cut the Line after the cursor to the clipboard</td>
</tr>
<tr>
<td>Alt + t</td>
<td>Swap current word with previous</td>
</tr>
Expand All @@ -81,10 +65,6 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
<td>Swap the last two words before the cursor.</td>
</tr>
<tr>
<td>Ctrl + y</td>
<td>Paste the last thing to be cut (yank)</td>
</tr>
<tr>
<td>Alt + u</td>
<td>UPPER capitalize every character from the cursor to the end of the current word.</td>
</tr>
Expand All @@ -106,6 +86,30 @@ Nice visual cheatsheet from the [article](https://clementc.github.io/blog/2018/0
</tr>
</table>

### Cut and paste (kill and yank)
<table>
<tr>
<td>Alt + Del</td>
<td>Cut the word (or part of word) before the cursor to the clipboard</td>
</tr>
<tr>
<td>Alt + d</td>
<td>Cut the word (or part of word) after the cursor to the clipboard</td>
</tr>
<tr>
<td>Ctrl + w</td>
<td>Cut to the previous whitespace before the cursor to the clipboard</td>
</tr>
<tr>
<td>Ctrl + k</td>
<td>Cut the line after the cursor to the clipboard</td>
</tr>
<tr>
<td>Ctrl + y</td>
<td>Paste the last thing to be cut (yank)</td>
</tr>
</table>

### History
<table>
<tr>
Expand Down