Mercurial > vim
annotate runtime/syntax/slice.vim @ 26668:f2579ccc97db v8.2.3863
patch 8.2.3863: various build flags accidentally enabled
Commit: https://github.com/vim/vim/commit/8d95d7091da08d0a236be4a16616e3dda388e58d
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 20 22:12:53 2021 +0000
patch 8.2.3863: various build flags accidentally enabled
Problem: Various build flags accidentally enabled.
Solution: Revert several lines in Makefile.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 Dec 2021 23:15:03 +0100 |
parents | 46763b01cd9a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Slice (ZeroC's Specification Language for Ice) | |
574 | 3 " Maintainer: Morel Bodin <slice06@nym.hush.com> |
4 " Last Change: 2005 Dec 03 | |
7 | 5 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4229
diff
changeset
|
6 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4229
diff
changeset
|
7 if exists("b:current_syntax") |
7 | 8 finish |
9 endif | |
10 | |
11 " The Slice keywords | |
12 | |
13 syn keyword sliceType bool byte double float int long short string void | |
14 syn keyword sliceQualifier const extends idempotent implements local nonmutating out throws | |
574 | 15 syn keyword sliceConstruct class enum exception dictionary interface module LocalObject Object sequence struct |
7 | 16 syn keyword sliceQualifier const extends idempotent implements local nonmutating out throws |
17 syn keyword sliceBoolean false true | |
18 | |
19 " Include directives | |
4229 | 20 syn region sliceIncluded display contained start=+"+ skip=+\\\\\|\\"+ end=+"+ |
7 | 21 syn match sliceIncluded display contained "<[^>]*>" |
22 syn match sliceInclude display "^\s*#\s*include\>\s*["<]" contains=sliceIncluded | |
23 | |
24 " Double-include guards | |
25 syn region sliceGuard start="^#\(define\|ifndef\|endif\)" end="$" | |
26 | |
27 " Strings and characters | |
28 syn region sliceString start=+"+ end=+"+ | |
29 | |
30 " Numbers (shamelessly ripped from c.vim, only slightly modified) | |
31 "integer number, or floating point number without a dot and with "f". | |
32 syn case ignore | |
33 syn match sliceNumbers display transparent "\<\d\|\.\d" contains=sliceNumber,sliceFloat,sliceOctal | |
34 syn match sliceNumber display contained "\d\+" | |
35 "hex number | |
36 syn match sliceNumber display contained "0x\x\+\(u\=l\{0,2}\|ll\=u\)\>" | |
37 " Flag the first zero of an octal number as something special | |
38 syn match sliceOctal display contained "0\o\+\(u\=l\{0,2}\|ll\=u\)\>" contains=sliceOctalZero | |
39 syn match sliceOctalZero display contained "\<0" | |
40 syn match sliceFloat display contained "\d\+f" | |
41 "floating point number, with dot, optional exponent | |
42 syn match sliceFloat display contained "\d\+\.\d*\(e[-+]\=\d\+\)\=[fl]\=" | |
43 "floating point number, starting with a dot, optional exponent | |
44 syn match sliceFloat display contained "\.\d\+\(e[-+]\=\d\+\)\=[fl]\=\>" | |
45 "floating point number, without dot, with exponent | |
46 syn match sliceFloat display contained "\d\+e[-+]\=\d\+[fl]\=\>" | |
47 " flag an octal number with wrong digits | |
48 syn case match | |
49 | |
50 | |
51 " Comments | |
52 syn region sliceComment start="/\*" end="\*/" | |
53 syn match sliceComment "//.*" | |
54 | |
55 syn sync ccomment sliceComment | |
56 | |
57 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
4229
diff
changeset
|
58 " Only when an item doesn't have highlighting yet |
7 | 59 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
60 hi def link sliceComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
61 hi def link sliceConstruct Keyword |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
62 hi def link sliceType Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
63 hi def link sliceString String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
64 hi def link sliceIncluded String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
65 hi def link sliceQualifier Keyword |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
66 hi def link sliceInclude Include |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
67 hi def link sliceGuard PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
68 hi def link sliceBoolean Boolean |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
69 hi def link sliceFloat Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
70 hi def link sliceNumber Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
71 hi def link sliceOctal Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
72 hi def link sliceOctalZero Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
73 hi def link sliceNumberError Special |
7 | 74 |
75 | |
76 let b:current_syntax = "slice" | |
77 | |
78 " vim: ts=8 |