commit 85b13f6db4428ff111af6986d0e5719140de3767
parent a48a0a4f7b2b1255025ceb128f6cc97fa0f992aa
Author: Christian Clason <c.clason@uni-graz.at>
Date: Wed, 20 Apr 2022 21:41:35 +0200
docs(filetype): proper example for did_load_filetypes (#18191)
Diffstat:
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/runtime/doc/filetype.txt b/runtime/doc/filetype.txt
@@ -257,7 +257,10 @@ C. If your file type can be detected by the file name or extension.
disabled by setting the did_load_filetypes global variable. If this
variable exists, $VIMRUNTIME/filetype.vim will not run.
Example: >
- " Disable filetype.vim
+ " Disable filetype.vim (but still load filetype.lua if enabled)
+ let g:did_load_filetypes = 0
+
+ " Disable filetype.vim and filetype.lua
let g:did_load_filetypes = 1
< 3. To use the new filetype detection you must restart Vim.