Improvements to Sublime syntax file (#1250)

This commit is contained in:
Nick Kocharhook 2022-06-25 03:33:33 +01:00 committed by GitHub
parent bfceb8f9c9
commit 9c719abf91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,32 +12,46 @@ contexts:
- include: strings - include: strings
- include: assignments - include: assignments
- include: recipeDefinition - include: recipeDefinition
- include: recipeContent
- include: functions
- include: keywords - include: keywords
assignments: assignments:
- match: '^(export[\s]?)?([a-zA-Z_][a-zA-Z0-9_-]*)=' - match: '^(export\s+)?([a-zA-Z_][a-zA-Z0-9_-]*)\s*(:=)'
captures: captures:
1: storage.type.just 1: storage.modifier.just
2: variable.name.just 2: variable.other.just
3: keyword.operator.assignment.just
comments: comments:
- match: '^#[^!].*' - match: '#[^!].*'
scope: comment.line.just scope: comment.line.just
interpolate: interpolate:
- match: '\{\{' - match: '(?<!\{)\{\{(?!\{)'
push: push:
- meta_scope: string.interpolated.just - meta_scope: string.interpolated.just
- match: '\}\}' - match: '\}\}'
pop: true pop: true
functions:
- match: \b(arch|os|os_family|env_var|env_var_or_default|invocation_directory|justfile|justfile_directory|just_executable|lowercase|quote|replace|trim|trim_end|trim_end_match|trim_end_matches|trim_start|trim_start_match|trim_start_matches|uppercase|absolute_path|extension|file_name|file_stem|parent_directory|without_extension|join|clean|path_exists|error|sha256|sha256_file|uuid)\b(?=\()
scope: entity.name.function.just
keywords: keywords:
- match: \b(arch|os|os_family|env_var|env_var_or_default)\b - match: \b(if|else|while)\b
scope: keyword.control.just scope: keyword.control.just
recipeDefinition: recipeDefinition:
- match: '^(@)?([a-zA-Z_][a-zA-Z0-9_-]*)([a-zA-Z0-9=\s_-`''"]*):([\sa-zA-Z0-9_-]*).*$' - match: '^(@)?([a-zA-Z_][a-zA-Z0-9_-]*)\s*([\+\*])?([a-zA-Z0-9_]*)?\s*(=)?\s*([a-zA-Z0-9_-`''"]*):([\sa-zA-Z0-9_-]*).*$'
captures: captures:
1: entity.name.function.just 1: storage.modifier.just
2: entity.name.function.just 2: entity.name.function.just
4: support.type.property-name.just 3: keyword.operator.just
4: variable.parameter.just
5: keyword.operator.just
6: string.interpolated.just
7: support.type.property-name.just
recipeContent:
- match: '^\s+([-@]*)'
captures:
1: storage.modifier.just
scripts: scripts:
- match: \s#\! - match: '\s#\!'
comment: The #! lines within a recipe. comment: The #! lines within a recipe.
push: push:
- meta_scope: support.type.property-name.just - meta_scope: support.type.property-name.just