Mercurial > vim
annotate runtime/syntax/conf.vim @ 32770:4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Commit: https://github.com/vim/vim/commit/e978b4534a5e10471108259118c0ef791106fd92
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Aug 13 10:33:05 2023 +0200
Farewell to Bram and dedicate upcoming Vim 9.1 to him (https://github.com/vim/vim/issues/12749)
* Dedicate upcoming Vim 9.1 to Bram
Also replace in a few more places Brams email address and mention new
maintainers.
* Remove Bram from any Maintainer role
* runtime: Align Header
* it's mailing list not mailinglist
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 Aug 2023 10:45:08 +0200 |
parents | e3ec2ec8841a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: generic configure file | |
32770
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
24569
diff
changeset
|
3 " Maintainer: The Vim Project <https://github.com/vim/vim> |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
24569
diff
changeset
|
4 " Last Change: 2023 Aug 10 |
4027cefc2aab
Farewell to Bram and dedicate upcoming Vim 9.1 to him (#12749)
Christian Brabandt <cb@256bit.org>
parents:
24569
diff
changeset
|
5 " Former Maintainer: Bram Moolenaar <Bram@vim.org> |
7 | 6 |
344 | 7 " Quit when a (custom) syntax file was already loaded |
8 if exists("b:current_syntax") | |
7 | 9 finish |
10 endif | |
11 | |
12 syn keyword confTodo contained TODO FIXME XXX | |
13 " Avoid matching "text#text", used in /etc/disktab and /etc/gettytab | |
24569 | 14 syn match confComment "^#.*" contains=confTodo,@Spell |
15 syn match confComment "\s#.*"ms=s+1 contains=confTodo,@Spell | |
7 | 16 syn region confString start=+"+ skip=+\\\\\|\\"+ end=+"+ oneline |
17 syn region confString start=+'+ skip=+\\\\\|\\'+ end=+'+ oneline | |
18 | |
19 " Define the default highlighting. | |
344 | 20 " Only used when an item doesn't have highlighting yet |
21 hi def link confComment Comment | |
22 hi def link confTodo Todo | |
23 hi def link confString String | |
7 | 24 |
25 let b:current_syntax = "conf" | |
26 | |
27 " vim: ts=8 sw=2 |