aboutsummaryrefslogtreecommitdiff
path: root/vim/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-04 02:03:56 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-04 02:03:56 +1300
commit41b748050659534927267bbf6240e42fd1182e79 (patch)
tree23e302407983454d8fe0d1e28643e9691b8c37b9 /vim/plugin
parentRename bigfile plugin to big_file (diff)
downloaddotfiles-41b748050659534927267bbf6240e42fd1182e79.tar.gz
dotfiles-41b748050659534927267bbf6240e42fd1182e79.zip
Rename a misnamed variable in big_file.vim
The word "size" was added to this variable's name unnecesarily.
Diffstat (limited to 'vim/plugin')
-rw-r--r--vim/plugin/big_file.vim8
1 files changed, 4 insertions, 4 deletions
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