From 7ae6b9bd703d5480214d90caa52497ab91de809a Mon Sep 17 00:00:00 2001 From: Steven Adger Date: Mon, 29 Jul 2019 06:42:04 -0700 Subject: [PATCH] On Windows, send CTRL+r if '+' register is not given (#2950) (instead of returning 0 which is what it currently does) --- autoload/SpaceVim/layers/shell.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/SpaceVim/layers/shell.vim b/autoload/SpaceVim/layers/shell.vim index 4fb928803..5afc998b3 100644 --- a/autoload/SpaceVim/layers/shell.vim +++ b/autoload/SpaceVim/layers/shell.vim @@ -93,6 +93,7 @@ func! SpaceVim#layers#shell#ctrl_r() abort if reg == 43 return @+ endif + return "\" endfunction func! SpaceVim#layers#shell#ctrl_w() abort