From 0064da097f13e1c1a8843308572976a436b15e28 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 28 May 2018 11:47:01 +1200 Subject: Use _save suffix for option caching variable This makes it explicit what the variable is for, in the same way as s:cpoptions_save in vim/vimrc. --- vim/plugin/copy_linebreak.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vim/plugin') diff --git a/vim/plugin/copy_linebreak.vim b/vim/plugin/copy_linebreak.vim index 0924134c..a7d8a3e5 100644 --- a/vim/plugin/copy_linebreak.vim +++ b/vim/plugin/copy_linebreak.vim @@ -17,7 +17,7 @@ let g:loaded_copy_linebreak = 1 " Enable copy-friendly linebreak options function! s:CopyLinebreakEnable() setlocal nolinebreak linebreak? - let s:showbreak = &showbreak + let s:showbreak_save = &showbreak set showbreak= if exists('+breakindent') setlocal nobreakindent @@ -27,7 +27,7 @@ endfunction " Disable copy-friendly linebreak options function! s:CopyLinebreakDisable() setlocal linebreak linebreak? - let &showbreak = s:showbreak + let &showbreak = s:showbreak_save if exists('+breakindent') setlocal breakindent< endif -- cgit v1.2.3