aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION4
-rw-r--r--vim/plugin/copy_linebreak.vim5
2 files changed, 5 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index 206fa15d..88a8e216 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.33.0
-Fri May 25 02:06:34 UTC 2018
+tejr dotfiles v0.34.0
+Sun May 27 22:13:33 UTC 2018
diff --git a/vim/plugin/copy_linebreak.vim b/vim/plugin/copy_linebreak.vim
index 9d241d5a..0924134c 100644
--- a/vim/plugin/copy_linebreak.vim
+++ b/vim/plugin/copy_linebreak.vim
@@ -17,7 +17,8 @@ let g:loaded_copy_linebreak = 1
" Enable copy-friendly linebreak options
function! s:CopyLinebreakEnable()
setlocal nolinebreak linebreak?
- setlocal showbreak=
+ let s:showbreak = &showbreak
+ set showbreak=
if exists('+breakindent')
setlocal nobreakindent
endif
@@ -26,7 +27,7 @@ endfunction
" Disable copy-friendly linebreak options
function! s:CopyLinebreakDisable()
setlocal linebreak linebreak?
- setlocal showbreak<
+ let &showbreak = s:showbreak
if exists('+breakindent')
setlocal breakindent<
endif