annotate runtime/syntax/structurizr.vim @ 27257:68c33419fdc6 v8.2.4157

patch 8.2.4157: terminal test fails because Windows sets the title Commit: https://github.com/vim/vim/commit/ae1bd87fe84bfb31379bc5da351bca56a3d3b571 Author: ichizok <gclient.gaap@gmail.com> Date: Thu Jan 20 14:57:29 2022 +0000 patch 8.2.4157: terminal test fails because Windows sets the title Problem: Terminal test fails because Windows sets the title. Solution: Add the "vterm_title" testing override and use it in the test. (Ozaki Kiichi, closes #9556)
author Bram Moolenaar <Bram@vim.org>
date Thu, 20 Jan 2022 16:00:07 +0100
parents d4faa2c5211b
children 8fc68ce4a097
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25700
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: Structurizr DSL
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Bastian Venthur <venthur@debian.org>
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 " Last Change: 2021-08-16
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 " Remark: For a language reference, see
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 " https://github.com/structurizr/dsl
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 if exists("b:current_syntax")
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 finish
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 endif
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 syn case ignore
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 " comments
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 syn match scomment "#.*$"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 syn match scomment "//.*$"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 syn region scomment start="/\*" end="\*/"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 " keywords
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 syn keyword skeyword animation
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 syn keyword skeyword autoLayout
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 syn keyword skeyword branding
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 syn keyword skeyword component
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 syn keyword skeyword configuration
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 syn keyword skeyword container
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 syn keyword skeyword containerinstance
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 syn keyword skeyword custom
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 syn keyword skeyword deployment
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 syn keyword skeyword deploymentenvironment
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 syn keyword skeyword deploymentgroup
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32 syn keyword skeyword deploymentnode
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 syn keyword skeyword dynamic
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
34 syn keyword skeyword element
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
35 syn keyword skeyword enterprise
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
36 syn keyword skeyword exclude
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
37 syn keyword skeyword filtered
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
38 syn keyword skeyword group
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
39 syn keyword skeyword healthcheck
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
40 syn keyword skeyword impliedrelationships
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
41 syn keyword skeyword include
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
42 syn keyword skeyword infrastructurenode
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
43 syn keyword skeyword model
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
44 syn keyword skeyword person
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
45 syn keyword skeyword perspectives
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
46 syn keyword skeyword properties
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
47 syn keyword skeyword relationship
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
48 syn keyword skeyword softwaresystem
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
49 syn keyword skeyword softwaresysteminstance
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
50 syn keyword skeyword styles
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
51 syn keyword skeyword systemcontext
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
52 syn keyword skeyword systemlandscape
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
53 syn keyword skeyword tags
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
54 syn keyword skeyword terminology
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
55 syn keyword skeyword theme
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
56 syn keyword skeyword title
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
57 syn keyword skeyword url
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
58 syn keyword skeyword users
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
59 syn keyword skeyword views
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
60 syn keyword skeyword workspace
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
61
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
62 syn match skeyword "\!adrs\s\+"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
63 syn match skeyword "\!constant\s\+"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
64 syn match skeyword "\!docs\s\+"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
65 syn match skeyword "\!identifiers\s\+"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
66 syn match skeyword "\!include\s\+"
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
67
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
68 syn region sstring oneline start='"' end='"'
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
69
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
70 syn region sblock start='{' end='}' fold transparent
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
71
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
72 hi def link sstring string
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
73 hi def link scomment comment
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
74 hi def link skeyword keyword
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
75
d4faa2c5211b Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
76 let b:current_syntax = "structurizr"