Mercurial > vim
annotate runtime/indent.vim @ 30601:6194c0ba3526
Added tag v9.0.0635 for changeset 33a3f63785db811c404370a6eeb08adb0cc5450e
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Oct 2022 21:30:06 +0200 |
parents | 9fe2fed9bb4b |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim support file to switch on loading indent files for file types |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
27634
9fe2fed9bb4b
Update runtime files. (closes #9741)
Bram Moolenaar <Bram@vim.org>
parents:
27538
diff
changeset
|
4 " Last Change: 2022 Feb 11 |
7 | 5 |
6 if exists("did_indent_on") | |
7 finish | |
8 endif | |
9 let did_indent_on = 1 | |
10 | |
11 augroup filetypeindent | |
233 | 12 au FileType * call s:LoadIndent() |
27538
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
13 augroup END |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
14 |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
15 def s:LoadIndent() |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
16 if exists("b:undo_indent") |
27634
9fe2fed9bb4b
Update runtime files. (closes #9741)
Bram Moolenaar <Bram@vim.org>
parents:
27538
diff
changeset
|
17 legacy exe b:undo_indent |
27538
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
18 unlet! b:undo_indent b:did_indent |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
19 endif |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
20 var s = expand("<amatch>") |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
21 if s != "" |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
22 if exists("b:did_indent") |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
23 unlet b:did_indent |
233 | 24 endif |
1549 | 25 |
27538
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
26 # When there is a dot it is used to separate filetype names. Thus for |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
27 # "aaa.bbb" load "indent/aaa.vim" and then "indent/bbb.vim". |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
28 for name in split(s, '\.') |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
29 exe 'runtime! indent/' .. name .. '.vim' |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
30 endfor |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
31 endif |
f37561549ec2
Update runtime files; use compiled functions
Bram Moolenaar <Bram@vim.org>
parents:
1549
diff
changeset
|
32 enddef |