2019-05-31 21:05:34 +02:00
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
# http://www.sublimetext.com/docs/3/syntax.html
|
|
|
|
name: DotENV
|
|
|
|
file_extensions:
|
|
|
|
- .env
|
|
|
|
- .env.dist
|
|
|
|
- .env.local
|
|
|
|
- .env.sample
|
|
|
|
- .env.example
|
2022-10-05 19:26:35 +02:00
|
|
|
- .env.template
|
2019-05-31 21:05:34 +02:00
|
|
|
- .env.test
|
|
|
|
- .env.test.local
|
2019-11-06 20:22:57 +01:00
|
|
|
- .env.testing
|
2019-05-31 21:05:34 +02:00
|
|
|
- .env.dev
|
|
|
|
- .env.development
|
|
|
|
- .env.development.local
|
|
|
|
- .env.prod
|
|
|
|
- .env.production
|
|
|
|
- .env.production.local
|
|
|
|
- .env.dusk.local
|
2019-11-06 20:22:57 +01:00
|
|
|
- .env.staging
|
2021-06-01 18:18:24 +02:00
|
|
|
- .env.default
|
|
|
|
- .env.defaults
|
|
|
|
- .envrc
|
|
|
|
- .flaskenv
|
2022-10-05 19:26:35 +02:00
|
|
|
- env
|
|
|
|
- env.example
|
|
|
|
- env.sample
|
|
|
|
- env.template
|
2019-05-31 21:05:34 +02:00
|
|
|
scope: source.env
|
|
|
|
contexts:
|
|
|
|
main:
|
|
|
|
- match: (#).*$\n?
|
|
|
|
comment: "Comments - starts with #"
|
|
|
|
scope: comment.line.number-sign.env
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.comment.env
|
|
|
|
- match: (\")
|
|
|
|
comment: Strings (double)
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.string.begin.env
|
|
|
|
push:
|
|
|
|
- meta_scope: string.quoted.double.env
|
|
|
|
- match: (\")
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.string.end
|
|
|
|
pop: true
|
|
|
|
- include: interpolation
|
|
|
|
- include: variable
|
|
|
|
- include: escape-characters
|
|
|
|
- match: (\')
|
|
|
|
comment: Strings (single)
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.string.begin.env
|
|
|
|
push:
|
|
|
|
- meta_scope: string.quoted.single.env
|
|
|
|
- match: (\')
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.string.end
|
|
|
|
pop: true
|
|
|
|
- match: '(?<=[\w])\s?='
|
|
|
|
comment: Assignment Operator
|
|
|
|
scope: keyword.operator.assignment.env
|
|
|
|
- match: '([\w]+)(?=\s?\=)'
|
|
|
|
comment: Variable
|
|
|
|
scope: variable.other.env
|
|
|
|
- match: (?i)\s?(export)
|
|
|
|
comment: Keywords
|
|
|
|
scope: keyword.other.env
|
|
|
|
- match: (?i)(?<=\=)\s?(true|false|null)
|
|
|
|
comment: Constants
|
|
|
|
scope: constant.language.env
|
|
|
|
- match: '\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\.?[0-9]*)|(\.[0-9]+))((e|E)(\+|-)?[0-9]+)?)\b'
|
|
|
|
comment: Numeric
|
|
|
|
scope: constant.numeric.env
|
|
|
|
escape-characters:
|
|
|
|
- match: '\\[nrt\\\$\"\'']'
|
|
|
|
scope: constant.character.escape.env
|
|
|
|
interpolation:
|
|
|
|
- match: '(\$\{|\{)'
|
|
|
|
comment: 'Template Syntax: "foo ${bar} {$baz}"'
|
|
|
|
captures:
|
|
|
|
1: string.interpolated.env keyword.other.template.begin.env
|
|
|
|
push:
|
|
|
|
- match: '(\})'
|
|
|
|
captures:
|
|
|
|
1: string.interpolated.env keyword.other.template.end.env
|
|
|
|
pop: true
|
|
|
|
- match: '(?x)(\$+)?([a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*?\b)'
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.variable.env variable.other.env
|
|
|
|
2: variable.other.env
|
|
|
|
variable:
|
|
|
|
- match: '(?x)(\$+)([a-zA-Z_\x{7f}-\x{ff}][a-zA-Z0-9_\x{7f}-\x{ff}]*?\b)'
|
|
|
|
captures:
|
|
|
|
1: punctuation.definition.variable.env variable.other.env
|
|
|
|
2: variable.other.env
|