From 96ca63874ac72e52a2dc37d5e0a4236ccd0dfde1 Mon Sep 17 00:00:00 2001 From: Caleb Taylor Date: Tue, 27 Aug 2019 16:18:39 -0700 Subject: [PATCH] Fixed clipboard --- README.md | 2 +- vimrcs/basic.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d296c339..20b8e3b1 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Some mappings are commented out " These two mappings are a quality of life improvement of copy/pasting from the clipboard " Effectively this paste map applies the indent within the pasted content from the indent level that you're at when you invoke the pasting " http://tilvim.com/2014/03/18/a-better-paste.html - map p :set pasteo"*]p:set nopaste + map p :set pasteo"+]p:set nopaste vmap y "+y `plugins_config.vim` diff --git a/vimrcs/basic.vim b/vimrcs/basic.vim index 9d3e7d21..b4acbe27 100644 --- a/vimrcs/basic.vim +++ b/vimrcs/basic.vim @@ -340,7 +340,7 @@ endif " These two mappings are a quality of life improvement of copy/pasting from the clipboard " Effectively this paste map applies the indent within the pasted content from the indent level that you're at when you invoke the pasting " http://tilvim.com/2014/03/18/a-better-paste.html -map p :set pasteo"*]p:set nopaste +map p :set pasteo"+]p:set nopaste vmap y "+y """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""