From 41b748050659534927267bbf6240e42fd1182e79 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 4 Nov 2017 02:03:56 +1300 Subject: Rename a misnamed variable in big_file.vim The word "size" was added to this variable's name unnecesarily. --- vim/plugin/big_file.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vim/plugin') diff --git a/vim/plugin/big_file.vim b/vim/plugin/big_file.vim index 4c07d7c3..5ccad7d2 100644 --- a/vim/plugin/big_file.vim +++ b/vim/plugin/big_file.vim @@ -19,8 +19,8 @@ if has('eval') && has('autocmd') endif " Cut 'synmaxcol' down to this or smaller for big files - if !exists('g:big_file_size_synmaxcol') - let g:big_file_size_synmaxcol = 256 + if !exists('g:big_file_synmaxcol') + let g:big_file_synmaxcol = 256 endif " Declare function for turning off slow options @@ -40,8 +40,8 @@ if has('eval') && has('autocmd') endif " Limit the number of columns of syntax highlighting - if exists('&synmaxcol') && &synmaxcol > g:big_file_size_synmaxcol - execute 'setlocal synmaxcol=' . g:big_file_size_synmaxcol + if exists('&synmaxcol') && &synmaxcol > g:big_file_synmaxcol + execute 'setlocal synmaxcol=' . g:big_file_synmaxcol endif " Disable syntax highlighting if configured to do so -- cgit v1.2.3