From f89394a347e96c6c69661611d14867d0d931a698 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 25 May 2019 17:23:06 +1200 Subject: Remove redundant option existence check --- autoload/big_file_options.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoload') diff --git a/autoload/big_file_options.vim b/autoload/big_file_options.vim index 0eca0be..023c672 100644 --- a/autoload/big_file_options.vim +++ b/autoload/big_file_options.vim @@ -91,7 +91,7 @@ function! s:SetPost() abort " Force maximum syntax columns down if configured if exists('+synmaxcol') let synmaxcol = get(g:, 'big_file_options_synmaxcol', 256) - if exists('+synmaxcol') && &synmaxcol > synmaxcol + if &synmaxcol > synmaxcol let &l:synmaxcol = synmaxcol endif endif -- cgit v1.2.3