Mercurial > vim
annotate runtime/indent/mail.vim @ 33939:880988084f3c
Added tag v9.0.2165 for changeset ed2267e507ff2b45e7a527f0eb93835d0aa71e41
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 14 Dec 2023 20:30:05 +0100 |
parents | 71cbad0921c9 |
children |
rev | line source |
---|---|
2034 | 1 " Vim indent file |
2 " Language: Mail | |
32975
71cbad0921c9
runtime: Remove Brams name from a few more runtime files (#12780)
Christian Brabandt <cb@256bit.org>
parents:
25880
diff
changeset
|
3 " Maintainer: The Vim Project <https://github.com/vim/vim> |
71cbad0921c9
runtime: Remove Brams name from a few more runtime files (#12780)
Christian Brabandt <cb@256bit.org>
parents:
25880
diff
changeset
|
4 " Last Change: 2023 Aug 13 |
2034 | 5 |
6 if exists("b:did_indent") | |
7 finish | |
8 endif | |
9 let b:did_indent = 1 | |
10 | |
11 " What works best is auto-indenting, disable other indenting. | |
12 " For formatting see the ftplugin. | |
13 setlocal autoindent nosmartindent nocindent indentexpr= | |
25880 | 14 |
15 let b:undo_indent = "setl ai< cin< inde< si<" |