aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/config/wrap.vim8
1 files changed, 5 insertions, 3 deletions
diff --git a/vim/config/wrap.vim b/vim/config/wrap.vim
index 94a3163a..14f36fb7 100644
--- a/vim/config/wrap.vim
+++ b/vim/config/wrap.vim
@@ -20,7 +20,9 @@ nnoremap k gk
if has('linebreak')
set linebreak
set showbreak=...
- if v:version > 704 || v:version ==# 704 && has('patch338')
+ let s:breakindent = v:version > 704
+ \ || v:version ==# 704 && has('patch338')
+ if s:breakindent
set breakindent
endif
@@ -31,13 +33,13 @@ if has('linebreak')
if &l:linebreak
setlocal nolinebreak
setlocal showbreak=
- if v:version > 704 || v:version ==# 704 && has('patch338')
+ if s:breakindent
setlocal nobreakindent
endif
else
setlocal linebreak
setlocal showbreak=...
- if v:version > 704 || v:version ==# 704 && has('patch338')
+ if s:breakindent
setlocal breakindent
endif
endif