Mercurial > vim
annotate runtime/syntax/apachestyle.vim @ 11824:b276c1e73c27 v8.0.0792
patch 8.0.0792: spell test leaves files behind
commit https://github.com/vim/vim/commit/1a0f2005002a9993ba7313d1978fa2043314f8b8
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jul 28 15:38:10 2017 +0200
patch 8.0.0792: spell test leaves files behind
Problem: Spell test leaves files behind.
Solution: Delete the files.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 28 Jul 2017 15:45:04 +0200 |
parents | 46763b01cd9a |
children | a6d3e2081544 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Apache-Style configuration files (proftpd.conf/apache.conf/..) | |
3 " Maintainer: Christian Hammers <ch@westend.com> | |
4 " URL: none | |
5 " ChangeLog: | |
6 " 2001-05-04,ch | |
7 " adopted Vim 6.0 syntax style | |
8 " 1999-10-28,ch | |
9 " initial release | |
10 | |
11 " The following formats are recognised: | |
12 " Apache-style .conf | |
13 " # Comment | |
14 " Option value | |
15 " Option value1 value2 | |
16 " Option = value1 value2 #not apache but also allowed | |
17 " <Section Name?> | |
18 " Option value | |
19 " <SubSection Name?> | |
20 " </SubSection> | |
21 " </Section> | |
22 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
23 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
24 if exists("b:current_syntax") |
7 | 25 finish |
26 endif | |
27 | |
28 syn case ignore | |
29 | |
30 syn match apComment /^\s*#.*$/ | |
31 syn match apOption /^\s*[^ \t#<=]*/ | |
32 "syn match apLastValue /[^ \t<=#]*$/ contains=apComment ugly | |
33 | |
34 " tags | |
35 syn region apTag start=/</ end=/>/ contains=apTagOption,apTagError | |
36 " the following should originally be " [^<>]+" but this didn't work :( | |
37 syn match apTagOption contained / [-\/_\.:*a-zA-Z0-9]\+/ms=s+1 | |
38 syn match apTagError contained /[^>]</ms=s+1 | |
39 | |
40 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
41 " Only when an item doesn't have highlighting yet |
7 | 42 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
43 hi def link apComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
44 hi def link apOption Keyword |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
45 "hi def link apLastValue Identifier ugly? |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
46 hi def link apTag Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
47 hi def link apTagOption Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
48 hi def link apTagError Error |
7 | 49 |
50 | |
51 let b:current_syntax = "apachestyle" | |
52 " vim: ts=8 |