From 43f15f303b1b2492f3a49993187f787467ef85dc Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 21 Jan 2016 18:46:36 -0600 Subject: [PATCH] Add some further clarification to the latest --- vim/paste-a-register-from-insert-mode.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/vim/paste-a-register-from-insert-mode.md b/vim/paste-a-register-from-insert-mode.md index e337bc0..315c2e4 100644 --- a/vim/paste-a-register-from-insert-mode.md +++ b/vim/paste-a-register-from-insert-mode.md @@ -1,10 +1,11 @@ # Paste A Register From Insert Mode Generally pasting a register is done from Normal mode using `p` or something -like `'1p` (the latter pasting from register `1`). Vim also allows you to -paste from a register without leaving Insert mode. By hitting `CTRL-R` and -then the name of the register, Vim will insert the contents of the register -in front of the cursor. +like `'1p` (the former pasting from the default register, `0`, and the +latter pasting from register `1`). Vim also allows you to paste from a +register without leaving Insert mode. By hitting `CTRL-R` and then the name +of the register, Vim will insert the contents of the register in front of +the cursor. For example, to paste from the default register from Insert mode, hit `CTRL-R 0`.