2010-01-06 20:54:52 +01:00
|
|
|
" Vim indent file
|
|
|
|
" Language: Mail
|
|
|
|
" Maintainer: Bram Moolenaar
|
2021-10-04 21:32:54 +01:00
|
|
|
" Last Change: 2021 Sep 26
|
2010-01-06 20:54:52 +01:00
|
|
|
|
|
|
|
if exists("b:did_indent")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_indent = 1
|
|
|
|
|
|
|
|
" What works best is auto-indenting, disable other indenting.
|
|
|
|
" For formatting see the ftplugin.
|
|
|
|
setlocal autoindent nosmartindent nocindent indentexpr=
|
2021-10-04 21:32:54 +01:00
|
|
|
|
|
|
|
let b:undo_indent = "setl ai< cin< inde< si<"
|