aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-04-30 15:34:31 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-04-30 15:34:31 +1200
commitdeaad3f0ef94e8602b1210cb739bb739fd212bfc (patch)
treeea14e3c19a357cdca253c1c254b63af9f5bf8448 /doc
parentOverhaul for new version (diff)
downloadvim-big-file-options-deaad3f0ef94e8602b1210cb739bb739fd212bfc.tar.gz
vim-big-file-options-deaad3f0ef94e8602b1210cb739bb739fd212bfc.zip
Switch to two-spacing
Diffstat (limited to 'doc')
-rw-r--r--doc/big_file_options.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/big_file_options.txt b/doc/big_file_options.txt
index 532d2d0..0603dc0 100644
--- a/doc/big_file_options.txt
+++ b/doc/big_file_options.txt
@@ -3,22 +3,22 @@
DESCRIPTION *big_file_options*
This plugin adds an |autocmd| hook to check the file size of an incoming
-buffer, and if it's over a certain threshold, disables certain options in order
-to make the file a bit easier to edit. It makes the buffer read-only, and
-disables filetypes, swap files, undo files, and syntax highlighting.
+buffer, and if it's over a certain threshold, disables certain options in
+order to make the file a bit easier to edit. It makes the buffer read-only,
+and disables filetypes, swap files, undo files, and syntax highlighting.
It's similar to the much older and more sophisticated LargeFile plugin by
Charles Campbell, which is based on VimTip #611:
<http://vim.wikia.com/wiki/Faster_loading_of_large_files>
If you want more options and bells and whistles, you should definitely use
-that instead. I'm intentionally keeping this very small and simple; it should
+that instead. I'm intentionally keeping this very small and simple; it should
be install-and-forget.
REQUIREMENTS *big_file_options-requirements*
-This plugin is only available if 'compatible' is not set. It also requires the
-|+autocmd| feature.
+This plugin is only available if 'compatible' is not set. It also requires
+the |+autocmd| feature.
OPTIONS *big_file_options-options*
@@ -40,7 +40,7 @@ to disable syntax highlighting completely on large files; this defaults to on.
*g:big_file_options_synmaxcol*
Set `g:big_file_options_synmaxcol` to the number of columns for which syntax
highlighting should be done on big files, assuming |g:big_file_options_syntax|
-is enabled. This defaults to 256, and only works if you have the |+synmaxcol|
+is enabled. This defaults to 256, and only works if you have the |+synmaxcol|
feature.
AUTHOR *big_file_options-author*