aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-05 22:05:50 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-05 22:05:50 +1200
commit0353b63f885d2dc3f4c0f203e8d56a33436ecff6 (patch)
treeb866a4df9c87416ebd99123f946337b0ba1615a0 /plugin
parentMerge branch 'release/v2.1.0' (diff)
parentBump VERSION (diff)
downloadvim-big-file-options-0353b63f885d2dc3f4c0f203e8d56a33436ecff6.tar.gz
vim-big-file-options-0353b63f885d2dc3f4c0f203e8d56a33436ecff6.zip
Merge branch 'release/v3.0.0'HEADv3.0.0master
* release/v3.0.0: Set filetype to blank string, not NONE Add a blank line Refactor to use deferred/dynamic hooks Remove repeated function definitions!
Diffstat (limited to 'plugin')
-rw-r--r--plugin/big_file_options.vim4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugin/big_file_options.vim b/plugin/big_file_options.vim
index 89b65c2..e02e935 100644
--- a/plugin/big_file_options.vim
+++ b/plugin/big_file_options.vim
@@ -14,7 +14,5 @@ let loaded_big_file_options = 1
augroup big_file_options
autocmd!
autocmd BufReadPre,StdinReadPre *
- \ call big_file_options#CheckPre(expand('<afile>'))
- autocmd BufReadPost,StdinReadPost *
- \ call big_file_options#CheckPost()
+ \ call big_file_options#()
augroup end