mirror of
https://github.com/vim/vim
synced 2025-03-15 14:27:53 +01:00
syntax/model.vim: minor wording improvement Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl>
15 lines
385 B
VimL
15 lines
385 B
VimL
" Vim indent file
|
|
" Language: Mail
|
|
" Maintainer: The Vim Project <https://github.com/vim/vim>
|
|
" Last Change: 2023 Aug 13
|
|
|
|
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=
|
|
|
|
let b:undo_indent = "setl ai< cin< inde< si<"
|