From 6e78aaf23837f7c35b20467e7422276b8edba79b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 5 Nov 2017 13:33:03 +1300 Subject: Move 'formatoptions-a' test near applicable block Just to keep related things together. --- vim/config/format.vim | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vim/config') diff --git a/vim/config/format.vim b/vim/config/format.vim index 477ad6d2..54d46dc2 100644 --- a/vim/config/format.vim +++ b/vim/config/format.vim @@ -26,12 +26,6 @@ if has('eval') finish endif - " Figure out if we have the 'a' flag for 'formatoptions', to reapply - " 'textwidth' wrapping to the current paragraph on every insertion or - " deletion; keep in a script variable - let s:formatoptions_has_a = v:version > 610 - \ || v:version ==# 610 && has('patch142') - " 'c' and 't' have both been around since at least 6.1 nnoremap \ c @@ -40,6 +34,12 @@ if has('eval') \ t \ :ToggleOptionFlagLocal formatoptions t + " Figure out if we have the 'a' flag for 'formatoptions', to reapply + " 'textwidth' wrapping to the current paragraph on every insertion or + " deletion; keep in a script variable + let s:formatoptions_has_a = v:version > 610 + \ || v:version ==# 610 && has('patch142') + " 'a' needs testing if s:formatoptions_has_a nnoremap -- cgit v1.2.3