diff options
author | Christian Clason <c.clason@uni-graz.at> | 2025-02-21 09:43:48 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-02-21 10:03:52 +0100 |
commit | 3e39250a79ef1a74bd64e283daf825208ca3875b (patch) | |
tree | e09c91a72450fbf1fb4617cfcbd995a53801fede | |
parent | 2b7d9d1900620484357fe71fa1f944a97e5ab0a0 (diff) | |
download | rneovim-3e39250a79ef1a74bd64e283daf825208ca3875b.tar.gz rneovim-3e39250a79ef1a74bd64e283daf825208ca3875b.tar.bz2 rneovim-3e39250a79ef1a74bd64e283daf825208ca3875b.zip |
vim-patch:3cb4148: runtime(sieve): set fileformat=dos in filetype plugin
References:
https://datatracker.ietf.org/doc/html/rfc5228#section-2.2
closes: vim/vim#16685
https://github.com/vim/vim/commit/3cb41489dc8856959c1d586217f141ce057dc373
Co-authored-by: David Mandelberg <david@mandelberg.org>
-rw-r--r-- | runtime/ftplugin/sieve.vim | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/runtime/ftplugin/sieve.vim b/runtime/ftplugin/sieve.vim index 3092b5d2d3..8161fe99ac 100644 --- a/runtime/ftplugin/sieve.vim +++ b/runtime/ftplugin/sieve.vim @@ -1,20 +1,19 @@ " Vim filetype plugin file " Language: Sieve filtering language input file +" Maintainer: This runtime file is looking for a new maintainer. " Previous Maintainer: Nikolai Weibull <now@bitwi.se> -" Latest Revision: 2008-07-09 +" Latest Revision: 2025 Feb 20 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 -let s:cpo_save = &cpo -set cpo&vim - -let b:undo_ftplugin = "setl com< cms< fo<" +let b:undo_ftplugin = "setl com< cms< fo< ff<" setlocal comments=s1:/*,mb:*,ex:*/,:# commentstring=#\ %s setlocal formatoptions-=t formatoptions+=croql -let &cpo = s:cpo_save -unlet s:cpo_save +" https://datatracker.ietf.org/doc/html/rfc5228#section-2.2 says +" "newlines (CRLF, never just CR or LF)" +setlocal fileformat=dos |