aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin/copy_linebreak.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-05-28 10:16:56 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-05-28 10:16:56 +1200
commit9934c87434eec9add8d0ffbb72833b08e4edd4ad (patch)
tree7892ba34538590d17d8b59713afa708ba8b37b1b /vim/plugin/copy_linebreak.vim
parentMerge branch 'release/v0.33.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-9934c87434eec9add8d0ffbb72833b08e4edd4ad.tar.gz
dotfiles-9934c87434eec9add8d0ffbb72833b08e4edd4ad.zip
Merge branch 'release/v0.34.0'v0.34.0
* release/v0.34.0: Bump VERSION Use script variable to keep showbreak setting
Diffstat (limited to 'vim/plugin/copy_linebreak.vim')
-rw-r--r--vim/plugin/copy_linebreak.vim5
1 files changed, 3 insertions, 2 deletions
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