mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
updated for version 7.0001
This commit is contained in:
13
runtime/indent.vim
Normal file
13
runtime/indent.vim
Normal file
@ -0,0 +1,13 @@
|
||||
" Vim support file to switch on loading indent files for file types
|
||||
"
|
||||
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
||||
" Last Change: 2001 Sep 12
|
||||
|
||||
if exists("did_indent_on")
|
||||
finish
|
||||
endif
|
||||
let did_indent_on = 1
|
||||
|
||||
augroup filetypeindent
|
||||
au FileType * if expand("<amatch>") != "" | if exists("b:did_indent") | unlet b:did_indent | endif | runtime! indent/<amatch>.vim | endif
|
||||
augroup END
|
Reference in New Issue
Block a user