Overview
| Comment: | [misc] SublimeText syntax update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | misc |
| Files: | files | file ages | folders |
| SHA3-256: |
6c08bf85cd37a237604619f3e211bc76 |
| User & Date: | olr on 2020-03-30 12:41:03 |
| Other Links: | manifest | tags |
Context
|
2020-03-30
| ||
| 13:47 | [build][server] require Python 3.7+ check-in: 53080c6166 user: olr tags: trunk, build, server | |
| 12:41 | [misc] SublimeText syntax update check-in: 6c08bf85cd user: olr tags: trunk, misc | |
| 12:39 | [build] code cleaning check-in: c1ecdfead1 user: olr tags: trunk, build | |
Changes
Modified misc/grammalecte.sublime-color-scheme from [d7042c117d] to [d307dd5980].
| ︙ | ︙ | |||
10 11 12 13 14 15 16 |
"line_highlight": "hsl(210, 60%, 25%)",
"bracket_options": "underline bold",
"selection": "hsl(210, 50%, 20%)",
"selection_border": "hsl(210, 80%, 40%)",
"selection_border_width": "1",
"selection_corner_style": "cut",
| | > > | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
"line_highlight": "hsl(210, 60%, 25%)",
"bracket_options": "underline bold",
"selection": "hsl(210, 50%, 20%)",
"selection_border": "hsl(210, 80%, 40%)",
"selection_border_width": "1",
"selection_corner_style": "cut",
"selection_corner_radius": "3",
"invisibles": "hsl(210, 20%, 40%)",
"highlight": "hsl(210, 100%, 60%)"
},
"rules":
[
{ "name": "Options command", "scope": "options.command", "foreground": "#50F0A0", "font_style": "bold", },
{ "name": "Options parameter", "scope": "options.parameter", "foreground": "#70B0F0", "font_style": "bold", },
{ "name": "Comment", "scope": "comment", "foreground": "hsl(210, 10%, 50%)" },
{ "name": "Bookmark", "scope": "bookmark", "foreground": "#A0F0FF", "background": "#0050A0", },
{ "name": "Graphline", "scope": "graphline", "foreground": "hsl(0, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", },
{ "name": "Graphname", "scope": "string.graphname", "foreground": "hsl(30, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", },
{ "name": "Graphcode", "scope": "string.graphcode", "foreground": "hsl(180, 100%, 80%)", "background": "hsl(0, 100%, 20%)", "font_style": "bold", },
{ "name": "Error message", "scope": "string.message", "foreground": "hsl(0, 50%, 65%)", },
{ "name": "Error message esc", "scope": "string.message.esc", "foreground": "hsl(30, 100%, 65%)", "background": "hsl(60, 100%, 12%)", "font_style": "bold" },
{ "name": "Error message URL", "scope": "string.message.url", "foreground": "hsl(180, 100%, 35%)", "background": "hsl(180, 100%, 12%)", },
{ "name": "Test header", "scope": "test.header", "foreground": "hsl(150, 100%, 60%)", "font_style": "bold" },
{ "name": "Test option", "scope": "test.error", "foreground": "hsl(0, 90%, 67%)", },
{ "name": "Todo", "scope": "todo", "foreground": "hsl(20, 90%, 60%)", "font_style": "bold", },
|
| ︙ | ︙ |
Modified misc/grammalecte.sublime-syntax from [c2b8da5acd] to [7cb15ba41b].
| ︙ | ︙ | |||
34 35 36 37 38 39 40 |
scope: constant.numeric
# Bookmarks
- match: '^!!.*|^\[\+\+\].*'
scope: bookmark
# Graph
| | > | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
scope: constant.numeric
# Bookmarks
- match: '^!!.*|^\[\+\+\].*'
scope: bookmark
# Graph
- match: '^@@@@GRAPH: *(\w+) *\| *(\w+) .*$'
scope: graphline
captures:
1: string.graphname
2: string.graphcode
- match: '^@@@@(?:END_GRAPH .*$| *)'
scope: graphline
# Keywords are if, else.
# Note that blackslashes don't need to be escaped within single quoted
# strings in YAML. When using single quoted strings, only single quotes
|
| ︙ | ︙ |