Mercurial > vim
annotate runtime/ftplugin/elm.vim @ 32975:71cbad0921c9
runtime: Remove Brams name from a few more runtime files (#12780)
Commit: https://github.com/vim/vim/commit/e8d6f03f6a61f60de6893253621d057f63dd6a23
Author: Christian Brabandt <cb@256bit.org>
Date: Wed Aug 23 20:23:07 2023 +0100
runtime: Remove Brams name from a few more runtime files (https://github.com/vim/vim/issues/12780)
syntax/model.vim: minor wording improvement
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 24 Aug 2023 07:33:28 +0200 |
parents | 4d76b3e07c07 |
children |
rev | line source |
---|---|
20753 | 1 " Elm filetype plugin file |
2 " Language: Elm | |
3 " Maintainer: Andreas Scharf <as@99n.de> | |
28620 | 4 " Latest Revision: 2022-04-25 |
20753 | 5 |
6 if exists("b:did_ftplugin") | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
11 let s:cpo_save = &cpo | |
12 set cpo&vim | |
13 | |
14 setlocal comments=s1fl:{-,mb:\ ,ex:-},:-- | |
15 setlocal commentstring=--\ %s | |
16 | |
28620 | 17 let b:undo_ftplugin = "setl com< cms<" |
18 | |
20753 | 19 let &cpo = s:cpo_save |
20 unlet s:cpo_save |