Bram Moolenaar | 5c73622 | 2010-01-06 20:54:52 +0100 | [diff] [blame] | 1 | " Vim indent file |
| 2 | " Language: Mail |
Christian Brabandt | e8d6f03 | 2023-08-23 20:23:07 +0100 | [diff] [blame] | 3 | " Maintainer: The Vim Project <https://github.com/vim/vim> |
| 4 | " Last Change: 2023 Aug 13 |
Bram Moolenaar | 5c73622 | 2010-01-06 20:54:52 +0100 | [diff] [blame] | 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= |
Bram Moolenaar | 6e64922 | 2021-10-04 21:32:54 +0100 | [diff] [blame] | 14 | |
| 15 | let b:undo_indent = "setl ai< cin< inde< si<" |