mirror of
https://github.com/vim/vim
synced 2025-07-16 01:01:58 +00:00
runtime(sieve): set fileformat=dos in filetype plugin
References: https://datatracker.ietf.org/doc/html/rfc5228#section-2.2 closes: #16685 Signed-off-by: David Mandelberg <david@mandelberg.org> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
fbe2dd7b4c
commit
3cb41489dc
@ -1,20 +1,19 @@
|
|||||||
" Vim filetype plugin file
|
" Vim filetype plugin file
|
||||||
" Language: Sieve filtering language input file
|
" Language: Sieve filtering language input file
|
||||||
|
" Maintainer: This runtime file is looking for a new maintainer.
|
||||||
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||||
" Latest Revision: 2008-07-09
|
" Latest Revision: 2025 Feb 20
|
||||||
|
|
||||||
if exists("b:did_ftplugin")
|
if exists("b:did_ftplugin")
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
let b:did_ftplugin = 1
|
let b:did_ftplugin = 1
|
||||||
|
|
||||||
let s:cpo_save = &cpo
|
let b:undo_ftplugin = "setl com< cms< fo< ff<"
|
||||||
set cpo&vim
|
|
||||||
|
|
||||||
let b:undo_ftplugin = "setl com< cms< fo<"
|
|
||||||
|
|
||||||
setlocal comments=s1:/*,mb:*,ex:*/,:# commentstring=#\ %s
|
setlocal comments=s1:/*,mb:*,ex:*/,:# commentstring=#\ %s
|
||||||
setlocal formatoptions-=t formatoptions+=croql
|
setlocal formatoptions-=t formatoptions+=croql
|
||||||
|
|
||||||
let &cpo = s:cpo_save
|
" https://datatracker.ietf.org/doc/html/rfc5228#section-2.2 says
|
||||||
unlet s:cpo_save
|
" "newlines (CRLF, never just CR or LF)"
|
||||||
|
setlocal fileformat=dos
|
||||||
|
Reference in New Issue
Block a user