march-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/march.mjs +13 -0
- package/package.json +36 -0
- package/src/agent/command-exec-tool.mjs +91 -0
- package/src/agent/context-stats-tool.mjs +57 -0
- package/src/agent/editing/diff-apply.mjs +28 -0
- package/src/agent/editing/diff-format.mjs +57 -0
- package/src/agent/file-edit-tool.mjs +276 -0
- package/src/agent/find-tool.mjs +112 -0
- package/src/agent/model-payload-dumper.mjs +201 -0
- package/src/agent/pi-session/pi-session-sidecar-failure.mjs +10 -0
- package/src/agent/provider/payload-messages.mjs +138 -0
- package/src/agent/read-file-tool.mjs +112 -0
- package/src/agent/runner/fast-model.mjs +36 -0
- package/src/agent/runner/runner-cleanup.mjs +12 -0
- package/src/agent/runner/runner-init.mjs +15 -0
- package/src/agent/runner/runner-session-state.mjs +40 -0
- package/src/agent/runner.mjs +266 -0
- package/src/agent/runtime/runner-runtime-host.mjs +73 -0
- package/src/agent/runtime/runtime-factory.mjs +42 -0
- package/src/agent/runtime/runtime-host.mjs +34 -0
- package/src/agent/session/session-auto-name.mjs +41 -0
- package/src/agent/session/session-binding.mjs +12 -0
- package/src/agent/session/session-options.mjs +46 -0
- package/src/agent/tool-names.mjs +1 -0
- package/src/agent/tool-result.mjs +3 -0
- package/src/agent/tools.mjs +54 -0
- package/src/agent/turn/turn-events.mjs +64 -0
- package/src/agent/turn/turn-runner.mjs +103 -0
- package/src/auth/login-command.mjs +90 -0
- package/src/auth/storage.mjs +33 -0
- package/src/cli/args.mjs +71 -0
- package/src/cli/commands/copy-command.mjs +73 -0
- package/src/cli/commands/export-command.mjs +206 -0
- package/src/cli/commands/extensions-command.mjs +53 -0
- package/src/cli/commands/help-command.mjs +7 -0
- package/src/cli/commands/model-command.mjs +110 -0
- package/src/cli/commands/paste-image-command.mjs +43 -0
- package/src/cli/commands/provider-command.mjs +55 -0
- package/src/cli/commands/status-command.mjs +157 -0
- package/src/cli/commands/thinking-command.mjs +80 -0
- package/src/cli/fallback-ui.mjs +156 -0
- package/src/cli/input/attachment-tokens.mjs +20 -0
- package/src/cli/input/autocomplete.mjs +106 -0
- package/src/cli/input/external-editor.mjs +39 -0
- package/src/cli/input/history-store.mjs +35 -0
- package/src/cli/input/image-clipboard.mjs +55 -0
- package/src/cli/input/keybinding-dispatch.mjs +76 -0
- package/src/cli/input/keybindings.mjs +96 -0
- package/src/cli/input/mode-state.mjs +43 -0
- package/src/cli/input/prompt-templates.mjs +84 -0
- package/src/cli/input/select-with-keyboard.mjs +67 -0
- package/src/cli/permissions.mjs +103 -0
- package/src/cli/repl-commands.mjs +86 -0
- package/src/cli/repl-loop.mjs +157 -0
- package/src/cli/selector-list.mjs +21 -0
- package/src/cli/session/pi-session-switch-command.mjs +41 -0
- package/src/cli/session/session-command.mjs +23 -0
- package/src/cli/session/session-list-command.mjs +68 -0
- package/src/cli/session/session-name-command.mjs +26 -0
- package/src/cli/session/session-source-command.mjs +89 -0
- package/src/cli/session/session-switch-command.mjs +1 -0
- package/src/cli/shell/shell-command.mjs +55 -0
- package/src/cli/shell/shell-drawer-controls.mjs +33 -0
- package/src/cli/shell/shell-drawer.mjs +192 -0
- package/src/cli/shell/shell-split-layout.mjs +70 -0
- package/src/cli/slash-commands.mjs +176 -0
- package/src/cli/startup/startup-banner.mjs +17 -0
- package/src/cli/startup/startup-session.mjs +51 -0
- package/src/cli/status-line-updater.mjs +74 -0
- package/src/cli/tool-output.mjs +9 -0
- package/src/cli/tui/editor/external-editor-runner.mjs +24 -0
- package/src/cli/tui/input/mouse-selection-controller.mjs +89 -0
- package/src/cli/tui/input/mouse-tracking.mjs +20 -0
- package/src/cli/tui/layout/main-pane-layout.mjs +38 -0
- package/src/cli/tui/layout/safe-render-boundary.mjs +46 -0
- package/src/cli/tui/markdown-renderer.mjs +279 -0
- package/src/cli/tui/output/scroll-state.mjs +79 -0
- package/src/cli/tui/output/tool-card-renderer.mjs +59 -0
- package/src/cli/tui/output-buffer.mjs +297 -0
- package/src/cli/tui/permission-request-ui.mjs +18 -0
- package/src/cli/tui/recall-rendering.mjs +25 -0
- package/src/cli/tui/select/editor-select-list.mjs +111 -0
- package/src/cli/tui/selection-screen.mjs +212 -0
- package/src/cli/tui/status/retry-status.mjs +72 -0
- package/src/cli/tui/status/spinner-status.mjs +42 -0
- package/src/cli/tui/status/status-bar.mjs +88 -0
- package/src/cli/tui/syntax/highlighting.mjs +277 -0
- package/src/cli/tui/syntax/languages.mjs +91 -0
- package/src/cli/tui/syntax/tree-sitter/bash.highlights.scm +261 -0
- package/src/cli/tui/syntax/tree-sitter/c.highlights.scm +341 -0
- package/src/cli/tui/syntax/tree-sitter/cpp.highlights.scm +268 -0
- package/src/cli/tui/syntax/tree-sitter/csharp.highlights.scm +577 -0
- package/src/cli/tui/syntax/tree-sitter/css.highlights.scm +109 -0
- package/src/cli/tui/syntax/tree-sitter/diff.highlights.scm +49 -0
- package/src/cli/tui/syntax/tree-sitter/go.highlights.scm +254 -0
- package/src/cli/tui/syntax/tree-sitter/html.highlights.scm +13 -0
- package/src/cli/tui/syntax/tree-sitter/java.highlights.scm +330 -0
- package/src/cli/tui/syntax/tree-sitter/json.highlights.scm +38 -0
- package/src/cli/tui/syntax/tree-sitter/php.highlights.scm +203 -0
- package/src/cli/tui/syntax/tree-sitter/python.highlights.scm +137 -0
- package/src/cli/tui/syntax/tree-sitter/ruby.highlights.scm +309 -0
- package/src/cli/tui/syntax/tree-sitter/rust.highlights.scm +531 -0
- package/src/cli/tui/syntax/tree-sitter/toml.highlights.scm +39 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-bash.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-c-sharp.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-c.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-cpp.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-css.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-diff.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-go.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-html.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-java.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-json.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-php.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-python.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-ruby.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-rust.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-toml.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-tsx.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-typescript.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tree-sitter-yaml.wasm +0 -0
- package/src/cli/tui/syntax/tree-sitter/tsx.highlights.scm +35 -0
- package/src/cli/tui/syntax/tree-sitter/typescript.highlights.scm +35 -0
- package/src/cli/tui/syntax/tree-sitter/yaml.highlights.scm +99 -0
- package/src/cli/tui/tool-rendering.mjs +194 -0
- package/src/cli/tui/tui-diff-rendering.mjs +157 -0
- package/src/cli/tui/tui-handlers.mjs +110 -0
- package/src/cli/tui/tui-input-controller.mjs +61 -0
- package/src/cli/tui/ui-theme.mjs +148 -0
- package/src/cli/ui.mjs +299 -0
- package/src/config/config-json.mjs +73 -0
- package/src/config/dotenv.mjs +20 -0
- package/src/config/features.mjs +75 -0
- package/src/config/loader.mjs +109 -0
- package/src/config/settings-command.mjs +97 -0
- package/src/context/diagnostics.mjs +70 -0
- package/src/context/engine.mjs +148 -0
- package/src/context/injections.mjs +26 -0
- package/src/context/project-context.mjs +20 -0
- package/src/context/session-status.mjs +15 -0
- package/src/context/shell-layers.mjs +23 -0
- package/src/context/system-core/base.md +60 -0
- package/src/context/system-core/prompts/deepseek-v4-pro.md +3 -0
- package/src/context/system-core/prompts/default.md +3 -0
- package/src/context/system-core.mjs +35 -0
- package/src/debug/model-context-dumper.mjs +52 -0
- package/src/extensions/discovery.mjs +40 -0
- package/src/extensions/lifecycle-adapter.mjs +210 -0
- package/src/extensions/lifecycle-manifest.mjs +69 -0
- package/src/image-gen/index.mjs +7 -0
- package/src/image-gen/provider.mjs +231 -0
- package/src/image-gen/tool.mjs +84 -0
- package/src/lsp/client.mjs +204 -0
- package/src/lsp/diagnostic-store.mjs +39 -0
- package/src/lsp/servers.mjs +212 -0
- package/src/lsp/service.mjs +65 -0
- package/src/main.mjs +294 -0
- package/src/mcp/client.mjs +195 -0
- package/src/mcp/config.mjs +130 -0
- package/src/mcp/index.mjs +48 -0
- package/src/mcp/tools.mjs +98 -0
- package/src/memory/database.mjs +219 -0
- package/src/memory/glossary.mjs +124 -0
- package/src/memory/graph/graph-cascades.mjs +109 -0
- package/src/memory/graph/graph-diagnostics.mjs +73 -0
- package/src/memory/graph/graph-path-removal.mjs +50 -0
- package/src/memory/graph/graph-path-utils.mjs +17 -0
- package/src/memory/graph/graph-primitives.mjs +103 -0
- package/src/memory/graph/graph-read.mjs +159 -0
- package/src/memory/graph.mjs +282 -0
- package/src/memory/markdown/markdown-delete.mjs +23 -0
- package/src/memory/markdown/markdown-format.mjs +128 -0
- package/src/memory/markdown/markdown-recall.mjs +28 -0
- package/src/memory/markdown/ripgrep.mjs +16 -0
- package/src/memory/markdown/sqlite-index.mjs +87 -0
- package/src/memory/markdown-store.mjs +286 -0
- package/src/memory/markdown-tools.mjs +103 -0
- package/src/memory/search.mjs +142 -0
- package/src/memory/snapshot.mjs +86 -0
- package/src/memory/system-views.mjs +120 -0
- package/src/memory/tools.mjs +282 -0
- package/src/notification/desktop-notifier.mjs +85 -0
- package/src/platform/open-file.mjs +28 -0
- package/src/provider/config-command.mjs +129 -0
- package/src/provider/presets.mjs +72 -0
- package/src/session/attachment-display.mjs +16 -0
- package/src/session/attachment-references.mjs +65 -0
- package/src/session/attachments.mjs +140 -0
- package/src/session/persist.mjs +1 -0
- package/src/session/pi-manager.mjs +34 -0
- package/src/session/session-utils.mjs +16 -0
- package/src/session/sidecar-sync.mjs +19 -0
- package/src/session/sidecar.mjs +68 -0
- package/src/session/transcript.mjs +83 -0
- package/src/session/tree.mjs +42 -0
- package/src/shell/cli-runtime.mjs +11 -0
- package/src/shell/hints.mjs +12 -0
- package/src/shell/node-pty-adapter.mjs +81 -0
- package/src/shell/runtime-state.mjs +126 -0
- package/src/shell/runtime.mjs +244 -0
- package/src/shell/screen-buffer.mjs +136 -0
- package/src/shell/tool-read.mjs +74 -0
- package/src/shell/tools.mjs +299 -0
- package/src/supergrok/actions/image-generate.mjs +60 -0
- package/src/supergrok/actions/search.mjs +78 -0
- package/src/supergrok/auth.mjs +36 -0
- package/src/supergrok/constants.mjs +18 -0
- package/src/supergrok/oauth-provider.mjs +278 -0
- package/src/supergrok/provider.mjs +36 -0
- package/src/supergrok/response.mjs +76 -0
- package/src/supergrok/tool.mjs +61 -0
- package/src/text/ansi.mjs +3 -0
- package/src/web/config-command.mjs +43 -0
- package/src/web/fetch.mjs +78 -0
- package/src/web/presets.mjs +16 -0
- package/src/web/search.mjs +83 -0
- package/src/web/tools.mjs +107 -0
|
@@ -0,0 +1,531 @@
|
|
|
1
|
+
; Forked from https://github.com/tree-sitter/tree-sitter-rust
|
|
2
|
+
; Copyright (c) 2017 Maxim Sokolov
|
|
3
|
+
; Licensed under the MIT license.
|
|
4
|
+
; Identifier conventions
|
|
5
|
+
(shebang) @keyword.directive
|
|
6
|
+
|
|
7
|
+
(identifier) @variable
|
|
8
|
+
|
|
9
|
+
((identifier) @type
|
|
10
|
+
(#lua-match? @type "^[A-Z]"))
|
|
11
|
+
|
|
12
|
+
(const_item
|
|
13
|
+
name: (identifier) @constant)
|
|
14
|
+
|
|
15
|
+
; Assume all-caps names are constants
|
|
16
|
+
((identifier) @constant
|
|
17
|
+
(#lua-match? @constant "^[A-Z][A-Z%d_]*$"))
|
|
18
|
+
|
|
19
|
+
; Other identifiers
|
|
20
|
+
(type_identifier) @type
|
|
21
|
+
|
|
22
|
+
(primitive_type) @type.builtin
|
|
23
|
+
|
|
24
|
+
(field_identifier) @variable.member
|
|
25
|
+
|
|
26
|
+
(shorthand_field_identifier) @variable.member
|
|
27
|
+
|
|
28
|
+
(shorthand_field_initializer
|
|
29
|
+
(identifier) @variable.member)
|
|
30
|
+
|
|
31
|
+
(mod_item
|
|
32
|
+
name: (identifier) @module)
|
|
33
|
+
|
|
34
|
+
(self) @variable.builtin
|
|
35
|
+
|
|
36
|
+
"_" @character.special
|
|
37
|
+
|
|
38
|
+
(label
|
|
39
|
+
[
|
|
40
|
+
"'"
|
|
41
|
+
(identifier)
|
|
42
|
+
] @label)
|
|
43
|
+
|
|
44
|
+
; Function definitions
|
|
45
|
+
(function_item
|
|
46
|
+
(identifier) @function)
|
|
47
|
+
|
|
48
|
+
(function_signature_item
|
|
49
|
+
(identifier) @function)
|
|
50
|
+
|
|
51
|
+
(parameter
|
|
52
|
+
[
|
|
53
|
+
(identifier)
|
|
54
|
+
"_"
|
|
55
|
+
] @variable.parameter)
|
|
56
|
+
|
|
57
|
+
(parameter
|
|
58
|
+
(ref_pattern
|
|
59
|
+
[
|
|
60
|
+
(mut_pattern
|
|
61
|
+
(identifier) @variable.parameter)
|
|
62
|
+
(identifier) @variable.parameter
|
|
63
|
+
]))
|
|
64
|
+
|
|
65
|
+
(closure_parameters
|
|
66
|
+
(_) @variable.parameter)
|
|
67
|
+
|
|
68
|
+
; Function calls
|
|
69
|
+
(call_expression
|
|
70
|
+
function: (identifier) @function.call)
|
|
71
|
+
|
|
72
|
+
(call_expression
|
|
73
|
+
function: (scoped_identifier
|
|
74
|
+
(identifier) @function.call .))
|
|
75
|
+
|
|
76
|
+
(call_expression
|
|
77
|
+
function: (field_expression
|
|
78
|
+
field: (field_identifier) @function.call))
|
|
79
|
+
|
|
80
|
+
(generic_function
|
|
81
|
+
function: (identifier) @function.call)
|
|
82
|
+
|
|
83
|
+
(generic_function
|
|
84
|
+
function: (scoped_identifier
|
|
85
|
+
name: (identifier) @function.call))
|
|
86
|
+
|
|
87
|
+
(generic_function
|
|
88
|
+
function: (field_expression
|
|
89
|
+
field: (field_identifier) @function.call))
|
|
90
|
+
|
|
91
|
+
; Assume other uppercase names are enum constructors
|
|
92
|
+
((field_identifier) @constant
|
|
93
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
94
|
+
|
|
95
|
+
(enum_variant
|
|
96
|
+
name: (identifier) @constant)
|
|
97
|
+
|
|
98
|
+
; Assume that uppercase names in paths are types
|
|
99
|
+
(scoped_identifier
|
|
100
|
+
path: (identifier) @module)
|
|
101
|
+
|
|
102
|
+
(scoped_identifier
|
|
103
|
+
(scoped_identifier
|
|
104
|
+
name: (identifier) @module))
|
|
105
|
+
|
|
106
|
+
(scoped_type_identifier
|
|
107
|
+
path: (identifier) @module)
|
|
108
|
+
|
|
109
|
+
(scoped_type_identifier
|
|
110
|
+
path: (identifier) @type
|
|
111
|
+
(#lua-match? @type "^[A-Z]"))
|
|
112
|
+
|
|
113
|
+
(scoped_type_identifier
|
|
114
|
+
(scoped_identifier
|
|
115
|
+
name: (identifier) @module))
|
|
116
|
+
|
|
117
|
+
((scoped_identifier
|
|
118
|
+
path: (identifier) @type)
|
|
119
|
+
(#lua-match? @type "^[A-Z]"))
|
|
120
|
+
|
|
121
|
+
((scoped_identifier
|
|
122
|
+
name: (identifier) @type)
|
|
123
|
+
(#lua-match? @type "^[A-Z]"))
|
|
124
|
+
|
|
125
|
+
((scoped_identifier
|
|
126
|
+
name: (identifier) @constant)
|
|
127
|
+
(#lua-match? @constant "^[A-Z][A-Z%d_]*$"))
|
|
128
|
+
|
|
129
|
+
((scoped_identifier
|
|
130
|
+
path: (identifier) @type
|
|
131
|
+
name: (identifier) @constant)
|
|
132
|
+
(#lua-match? @type "^[A-Z]")
|
|
133
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
134
|
+
|
|
135
|
+
((scoped_type_identifier
|
|
136
|
+
path: (identifier) @type
|
|
137
|
+
name: (type_identifier) @constant)
|
|
138
|
+
(#lua-match? @type "^[A-Z]")
|
|
139
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
140
|
+
|
|
141
|
+
[
|
|
142
|
+
(crate)
|
|
143
|
+
(super)
|
|
144
|
+
] @module
|
|
145
|
+
|
|
146
|
+
(scoped_use_list
|
|
147
|
+
path: (identifier) @module)
|
|
148
|
+
|
|
149
|
+
(scoped_use_list
|
|
150
|
+
path: (scoped_identifier
|
|
151
|
+
(identifier) @module))
|
|
152
|
+
|
|
153
|
+
(use_list
|
|
154
|
+
(scoped_identifier
|
|
155
|
+
(identifier) @module
|
|
156
|
+
.
|
|
157
|
+
(_)))
|
|
158
|
+
|
|
159
|
+
(use_list
|
|
160
|
+
(identifier) @type
|
|
161
|
+
(#lua-match? @type "^[A-Z]"))
|
|
162
|
+
|
|
163
|
+
(use_as_clause
|
|
164
|
+
alias: (identifier) @type
|
|
165
|
+
(#lua-match? @type "^[A-Z]"))
|
|
166
|
+
|
|
167
|
+
; Correct enum constructors
|
|
168
|
+
(call_expression
|
|
169
|
+
function: (scoped_identifier
|
|
170
|
+
"::"
|
|
171
|
+
name: (identifier) @constant)
|
|
172
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
173
|
+
|
|
174
|
+
; Assume uppercase names in a match arm are constants.
|
|
175
|
+
((match_arm
|
|
176
|
+
pattern: (match_pattern
|
|
177
|
+
(identifier) @constant))
|
|
178
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
179
|
+
|
|
180
|
+
((match_arm
|
|
181
|
+
pattern: (match_pattern
|
|
182
|
+
(scoped_identifier
|
|
183
|
+
name: (identifier) @constant)))
|
|
184
|
+
(#lua-match? @constant "^[A-Z]"))
|
|
185
|
+
|
|
186
|
+
((identifier) @constant.builtin
|
|
187
|
+
(#any-of? @constant.builtin "Some" "None" "Ok" "Err"))
|
|
188
|
+
|
|
189
|
+
; Macro definitions
|
|
190
|
+
"$" @function.macro
|
|
191
|
+
|
|
192
|
+
(metavariable) @function.macro
|
|
193
|
+
|
|
194
|
+
(macro_definition
|
|
195
|
+
"macro_rules!" @function.macro)
|
|
196
|
+
|
|
197
|
+
; Attribute macros
|
|
198
|
+
(attribute_item
|
|
199
|
+
(attribute
|
|
200
|
+
(identifier) @function.macro))
|
|
201
|
+
|
|
202
|
+
(inner_attribute_item
|
|
203
|
+
(attribute
|
|
204
|
+
(identifier) @function.macro))
|
|
205
|
+
|
|
206
|
+
(attribute
|
|
207
|
+
(scoped_identifier
|
|
208
|
+
(identifier) @function.macro .))
|
|
209
|
+
|
|
210
|
+
; Derive macros (assume all arguments are types)
|
|
211
|
+
; (attribute
|
|
212
|
+
; (identifier) @_name
|
|
213
|
+
; arguments: (attribute (attribute (identifier) @type))
|
|
214
|
+
; (#eq? @_name "derive"))
|
|
215
|
+
; Function-like macros
|
|
216
|
+
(macro_invocation
|
|
217
|
+
macro: (identifier) @function.macro)
|
|
218
|
+
|
|
219
|
+
(macro_invocation
|
|
220
|
+
macro: (scoped_identifier
|
|
221
|
+
(identifier) @function.macro .))
|
|
222
|
+
|
|
223
|
+
; Literals
|
|
224
|
+
(boolean_literal) @boolean
|
|
225
|
+
|
|
226
|
+
(integer_literal) @number
|
|
227
|
+
|
|
228
|
+
(float_literal) @number.float
|
|
229
|
+
|
|
230
|
+
[
|
|
231
|
+
(raw_string_literal)
|
|
232
|
+
(string_literal)
|
|
233
|
+
] @string
|
|
234
|
+
|
|
235
|
+
(escape_sequence) @string.escape
|
|
236
|
+
|
|
237
|
+
(char_literal) @character
|
|
238
|
+
|
|
239
|
+
; Keywords
|
|
240
|
+
[
|
|
241
|
+
"use"
|
|
242
|
+
"mod"
|
|
243
|
+
] @keyword.import
|
|
244
|
+
|
|
245
|
+
(use_as_clause
|
|
246
|
+
"as" @keyword.import)
|
|
247
|
+
|
|
248
|
+
[
|
|
249
|
+
"default"
|
|
250
|
+
"impl"
|
|
251
|
+
"let"
|
|
252
|
+
"move"
|
|
253
|
+
"unsafe"
|
|
254
|
+
"where"
|
|
255
|
+
] @keyword
|
|
256
|
+
|
|
257
|
+
[
|
|
258
|
+
"enum"
|
|
259
|
+
"struct"
|
|
260
|
+
"union"
|
|
261
|
+
"trait"
|
|
262
|
+
"type"
|
|
263
|
+
] @keyword.type
|
|
264
|
+
|
|
265
|
+
[
|
|
266
|
+
"async"
|
|
267
|
+
"await"
|
|
268
|
+
"gen"
|
|
269
|
+
] @keyword.coroutine
|
|
270
|
+
|
|
271
|
+
"try" @keyword.exception
|
|
272
|
+
|
|
273
|
+
[
|
|
274
|
+
"ref"
|
|
275
|
+
"pub"
|
|
276
|
+
"raw"
|
|
277
|
+
(mutable_specifier)
|
|
278
|
+
"const"
|
|
279
|
+
"static"
|
|
280
|
+
"dyn"
|
|
281
|
+
"extern"
|
|
282
|
+
] @keyword.modifier
|
|
283
|
+
|
|
284
|
+
(lifetime
|
|
285
|
+
"'" @keyword.modifier)
|
|
286
|
+
|
|
287
|
+
(lifetime
|
|
288
|
+
(identifier) @attribute)
|
|
289
|
+
|
|
290
|
+
(lifetime
|
|
291
|
+
(identifier) @attribute.builtin
|
|
292
|
+
(#any-of? @attribute.builtin "static" "_"))
|
|
293
|
+
|
|
294
|
+
"fn" @keyword.function
|
|
295
|
+
|
|
296
|
+
[
|
|
297
|
+
"return"
|
|
298
|
+
"yield"
|
|
299
|
+
] @keyword.return
|
|
300
|
+
|
|
301
|
+
(type_cast_expression
|
|
302
|
+
"as" @keyword.operator)
|
|
303
|
+
|
|
304
|
+
(qualified_type
|
|
305
|
+
"as" @keyword.operator)
|
|
306
|
+
|
|
307
|
+
(use_list
|
|
308
|
+
(self) @module)
|
|
309
|
+
|
|
310
|
+
(scoped_use_list
|
|
311
|
+
(self) @module)
|
|
312
|
+
|
|
313
|
+
(scoped_identifier
|
|
314
|
+
[
|
|
315
|
+
(crate)
|
|
316
|
+
(super)
|
|
317
|
+
(self)
|
|
318
|
+
] @module)
|
|
319
|
+
|
|
320
|
+
(visibility_modifier
|
|
321
|
+
[
|
|
322
|
+
(crate)
|
|
323
|
+
(super)
|
|
324
|
+
(self)
|
|
325
|
+
] @module)
|
|
326
|
+
|
|
327
|
+
[
|
|
328
|
+
"if"
|
|
329
|
+
"else"
|
|
330
|
+
"match"
|
|
331
|
+
] @keyword.conditional
|
|
332
|
+
|
|
333
|
+
[
|
|
334
|
+
"break"
|
|
335
|
+
"continue"
|
|
336
|
+
"in"
|
|
337
|
+
"loop"
|
|
338
|
+
"while"
|
|
339
|
+
] @keyword.repeat
|
|
340
|
+
|
|
341
|
+
"for" @keyword
|
|
342
|
+
|
|
343
|
+
(for_expression
|
|
344
|
+
"for" @keyword.repeat)
|
|
345
|
+
|
|
346
|
+
; Operators
|
|
347
|
+
[
|
|
348
|
+
"!"
|
|
349
|
+
"!="
|
|
350
|
+
"%"
|
|
351
|
+
"%="
|
|
352
|
+
"&"
|
|
353
|
+
"&&"
|
|
354
|
+
"&="
|
|
355
|
+
"*"
|
|
356
|
+
"*="
|
|
357
|
+
"+"
|
|
358
|
+
"+="
|
|
359
|
+
"-"
|
|
360
|
+
"-="
|
|
361
|
+
".."
|
|
362
|
+
"..="
|
|
363
|
+
"..."
|
|
364
|
+
"/"
|
|
365
|
+
"/="
|
|
366
|
+
"<"
|
|
367
|
+
"<<"
|
|
368
|
+
"<<="
|
|
369
|
+
"<="
|
|
370
|
+
"="
|
|
371
|
+
"=="
|
|
372
|
+
">"
|
|
373
|
+
">="
|
|
374
|
+
">>"
|
|
375
|
+
">>="
|
|
376
|
+
"?"
|
|
377
|
+
"@"
|
|
378
|
+
"^"
|
|
379
|
+
"^="
|
|
380
|
+
"|"
|
|
381
|
+
"|="
|
|
382
|
+
"||"
|
|
383
|
+
] @operator
|
|
384
|
+
|
|
385
|
+
(use_wildcard
|
|
386
|
+
"*" @character.special)
|
|
387
|
+
|
|
388
|
+
(remaining_field_pattern
|
|
389
|
+
".." @character.special)
|
|
390
|
+
|
|
391
|
+
(range_pattern
|
|
392
|
+
[
|
|
393
|
+
".."
|
|
394
|
+
"..="
|
|
395
|
+
"..."
|
|
396
|
+
] @character.special)
|
|
397
|
+
|
|
398
|
+
; Punctuation
|
|
399
|
+
[
|
|
400
|
+
"("
|
|
401
|
+
")"
|
|
402
|
+
"["
|
|
403
|
+
"]"
|
|
404
|
+
"{"
|
|
405
|
+
"}"
|
|
406
|
+
] @punctuation.bracket
|
|
407
|
+
|
|
408
|
+
(closure_parameters
|
|
409
|
+
"|" @punctuation.bracket)
|
|
410
|
+
|
|
411
|
+
(type_arguments
|
|
412
|
+
[
|
|
413
|
+
"<"
|
|
414
|
+
">"
|
|
415
|
+
] @punctuation.bracket)
|
|
416
|
+
|
|
417
|
+
(type_parameters
|
|
418
|
+
[
|
|
419
|
+
"<"
|
|
420
|
+
">"
|
|
421
|
+
] @punctuation.bracket)
|
|
422
|
+
|
|
423
|
+
(bracketed_type
|
|
424
|
+
[
|
|
425
|
+
"<"
|
|
426
|
+
">"
|
|
427
|
+
] @punctuation.bracket)
|
|
428
|
+
|
|
429
|
+
(for_lifetimes
|
|
430
|
+
[
|
|
431
|
+
"<"
|
|
432
|
+
">"
|
|
433
|
+
] @punctuation.bracket)
|
|
434
|
+
|
|
435
|
+
[
|
|
436
|
+
","
|
|
437
|
+
"."
|
|
438
|
+
":"
|
|
439
|
+
"::"
|
|
440
|
+
";"
|
|
441
|
+
"->"
|
|
442
|
+
"=>"
|
|
443
|
+
] @punctuation.delimiter
|
|
444
|
+
|
|
445
|
+
(attribute_item
|
|
446
|
+
"#" @punctuation.special)
|
|
447
|
+
|
|
448
|
+
(inner_attribute_item
|
|
449
|
+
[
|
|
450
|
+
"!"
|
|
451
|
+
"#"
|
|
452
|
+
] @punctuation.special)
|
|
453
|
+
|
|
454
|
+
(macro_invocation
|
|
455
|
+
"!" @function.macro)
|
|
456
|
+
|
|
457
|
+
(never_type
|
|
458
|
+
"!" @type.builtin)
|
|
459
|
+
|
|
460
|
+
(macro_invocation
|
|
461
|
+
macro: (identifier) @_identifier @keyword.exception
|
|
462
|
+
"!" @keyword.exception
|
|
463
|
+
(#eq? @_identifier "panic"))
|
|
464
|
+
|
|
465
|
+
(macro_invocation
|
|
466
|
+
macro: (identifier) @_identifier @keyword.exception
|
|
467
|
+
"!" @keyword.exception
|
|
468
|
+
(#contains? @_identifier "assert"))
|
|
469
|
+
|
|
470
|
+
(macro_invocation
|
|
471
|
+
macro: (identifier) @_identifier @keyword.debug
|
|
472
|
+
"!" @keyword.debug
|
|
473
|
+
(#eq? @_identifier "dbg"))
|
|
474
|
+
|
|
475
|
+
; Comments
|
|
476
|
+
[
|
|
477
|
+
(line_comment)
|
|
478
|
+
(block_comment)
|
|
479
|
+
(outer_doc_comment_marker)
|
|
480
|
+
(inner_doc_comment_marker)
|
|
481
|
+
] @comment @spell
|
|
482
|
+
|
|
483
|
+
(line_comment
|
|
484
|
+
(doc_comment)) @comment.documentation
|
|
485
|
+
|
|
486
|
+
(block_comment
|
|
487
|
+
(doc_comment)) @comment.documentation
|
|
488
|
+
|
|
489
|
+
(call_expression
|
|
490
|
+
function: (scoped_identifier
|
|
491
|
+
path: (identifier) @_regex
|
|
492
|
+
(#any-of? @_regex "Regex" "ByteRegexBuilder")
|
|
493
|
+
name: (identifier) @_new
|
|
494
|
+
(#eq? @_new "new"))
|
|
495
|
+
arguments: (arguments
|
|
496
|
+
(raw_string_literal
|
|
497
|
+
(string_content) @string.regexp)))
|
|
498
|
+
|
|
499
|
+
(call_expression
|
|
500
|
+
function: (scoped_identifier
|
|
501
|
+
path: (scoped_identifier
|
|
502
|
+
(identifier) @_regex
|
|
503
|
+
(#any-of? @_regex "Regex" "ByteRegexBuilder") .)
|
|
504
|
+
name: (identifier) @_new
|
|
505
|
+
(#eq? @_new "new"))
|
|
506
|
+
arguments: (arguments
|
|
507
|
+
(raw_string_literal
|
|
508
|
+
(string_content) @string.regexp)))
|
|
509
|
+
|
|
510
|
+
(call_expression
|
|
511
|
+
function: (scoped_identifier
|
|
512
|
+
path: (identifier) @_regex
|
|
513
|
+
(#any-of? @_regex "RegexSet" "RegexSetBuilder")
|
|
514
|
+
name: (identifier) @_new
|
|
515
|
+
(#eq? @_new "new"))
|
|
516
|
+
arguments: (arguments
|
|
517
|
+
(array_expression
|
|
518
|
+
(raw_string_literal
|
|
519
|
+
(string_content) @string.regexp))))
|
|
520
|
+
|
|
521
|
+
(call_expression
|
|
522
|
+
function: (scoped_identifier
|
|
523
|
+
path: (scoped_identifier
|
|
524
|
+
(identifier) @_regex
|
|
525
|
+
(#any-of? @_regex "RegexSet" "RegexSetBuilder") .)
|
|
526
|
+
name: (identifier) @_new
|
|
527
|
+
(#eq? @_new "new"))
|
|
528
|
+
arguments: (arguments
|
|
529
|
+
(array_expression
|
|
530
|
+
(raw_string_literal
|
|
531
|
+
(string_content) @string.regexp))))
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
(bare_key) @property
|
|
2
|
+
|
|
3
|
+
[
|
|
4
|
+
(string)
|
|
5
|
+
(quoted_key)
|
|
6
|
+
] @string
|
|
7
|
+
|
|
8
|
+
(boolean) @boolean
|
|
9
|
+
|
|
10
|
+
(comment) @comment @spell
|
|
11
|
+
|
|
12
|
+
(escape_sequence) @string.escape
|
|
13
|
+
|
|
14
|
+
(integer) @number
|
|
15
|
+
|
|
16
|
+
(float) @number.float
|
|
17
|
+
|
|
18
|
+
[
|
|
19
|
+
(local_date)
|
|
20
|
+
(local_date_time)
|
|
21
|
+
(local_time)
|
|
22
|
+
(offset_date_time)
|
|
23
|
+
] @string.special
|
|
24
|
+
|
|
25
|
+
"=" @operator
|
|
26
|
+
|
|
27
|
+
[
|
|
28
|
+
"."
|
|
29
|
+
","
|
|
30
|
+
] @punctuation.delimiter
|
|
31
|
+
|
|
32
|
+
[
|
|
33
|
+
"["
|
|
34
|
+
"]"
|
|
35
|
+
"[["
|
|
36
|
+
"]]"
|
|
37
|
+
"{"
|
|
38
|
+
"}"
|
|
39
|
+
] @punctuation.bracket
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
; Types
|
|
2
|
+
|
|
3
|
+
(type_identifier) @type
|
|
4
|
+
(predefined_type) @type.builtin
|
|
5
|
+
|
|
6
|
+
((identifier) @type
|
|
7
|
+
(#match? @type "^[A-Z]"))
|
|
8
|
+
|
|
9
|
+
(type_arguments
|
|
10
|
+
"<" @punctuation.bracket
|
|
11
|
+
">" @punctuation.bracket)
|
|
12
|
+
|
|
13
|
+
; Variables
|
|
14
|
+
|
|
15
|
+
(required_parameter (identifier) @variable.parameter)
|
|
16
|
+
(optional_parameter (identifier) @variable.parameter)
|
|
17
|
+
|
|
18
|
+
; Keywords
|
|
19
|
+
|
|
20
|
+
[ "abstract"
|
|
21
|
+
"declare"
|
|
22
|
+
"enum"
|
|
23
|
+
"export"
|
|
24
|
+
"implements"
|
|
25
|
+
"interface"
|
|
26
|
+
"keyof"
|
|
27
|
+
"namespace"
|
|
28
|
+
"private"
|
|
29
|
+
"protected"
|
|
30
|
+
"public"
|
|
31
|
+
"type"
|
|
32
|
+
"readonly"
|
|
33
|
+
"override"
|
|
34
|
+
"satisfies"
|
|
35
|
+
] @keyword
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
; Types
|
|
2
|
+
|
|
3
|
+
(type_identifier) @type
|
|
4
|
+
(predefined_type) @type.builtin
|
|
5
|
+
|
|
6
|
+
((identifier) @type
|
|
7
|
+
(#match? @type "^[A-Z]"))
|
|
8
|
+
|
|
9
|
+
(type_arguments
|
|
10
|
+
"<" @punctuation.bracket
|
|
11
|
+
">" @punctuation.bracket)
|
|
12
|
+
|
|
13
|
+
; Variables
|
|
14
|
+
|
|
15
|
+
(required_parameter (identifier) @variable.parameter)
|
|
16
|
+
(optional_parameter (identifier) @variable.parameter)
|
|
17
|
+
|
|
18
|
+
; Keywords
|
|
19
|
+
|
|
20
|
+
[ "abstract"
|
|
21
|
+
"declare"
|
|
22
|
+
"enum"
|
|
23
|
+
"export"
|
|
24
|
+
"implements"
|
|
25
|
+
"interface"
|
|
26
|
+
"keyof"
|
|
27
|
+
"namespace"
|
|
28
|
+
"private"
|
|
29
|
+
"protected"
|
|
30
|
+
"public"
|
|
31
|
+
"type"
|
|
32
|
+
"readonly"
|
|
33
|
+
"override"
|
|
34
|
+
"satisfies"
|
|
35
|
+
] @keyword
|