From e5e8c952fb139453458eb208c32630c352f91a72 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Tue, 6 Feb 2018 22:47:30 +0100 Subject: [PATCH] use C instead of CTRL in cheetsheet --- vim/cheetsheet.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim/cheetsheet.md b/vim/cheetsheet.md index 1b133f0..2ddfef0 100644 --- a/vim/cheetsheet.md +++ b/vim/cheetsheet.md @@ -2,7 +2,7 @@ Generel stuff that I need to get into my muscle memory. -* `CTRL-W [hjkl]` - switch to window left, above, below, right +* `C-W [hjkl]` - switch to window left, above, below, right ## yanking * `"ay` - replace content of register 'a' @@ -11,7 +11,7 @@ Generel stuff that I need to get into my muscle memory. * `d` - will put stuff just in the default register `""` - so `"0p` will still paste the last yank * `3yy` - yank next three lines -* `CTRL-r +` - paste register '+' in insert mode +* `C-r +` - paste register '+' in insert mode * `"*` - linux the PRIMARY clipboard, system clipboard on other operating systems * `"+` - the system clipboard on all operating systems