aboutsummaryrefslogtreecommitdiff
path: root/plugin/big_file_options.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/big_file_options.vim')
-rw-r--r--plugin/big_file_options.vim6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugin/big_file_options.vim b/plugin/big_file_options.vim
index d78077a..cea19ba 100644
--- a/plugin/big_file_options.vim
+++ b/plugin/big_file_options.vim
@@ -16,10 +16,8 @@ let loaded_big_file_options = 1
" Define autocmd for calling to check filesize
augroup big_file_options
autocmd!
- autocmd BufReadPre,StdinReadPre
- \ *
+ autocmd BufReadPre,StdinReadPre *
\ call big_file_options#CheckPre(expand('<afile>'))
- autocmd BufReadPost,StdinReadPost
- \ *
+ autocmd BufReadPost,StdinReadPost *
\ call big_file_options#CheckPost()
augroup end