These options, specified in your defaults
or in a named custom configuration, determine what features your custom syntaxes will have. Omitted options will be treated as null
.
These options enable support for various proposed language features. These proposals may change unexpectedly. If they stabilize, they will eventually be incorporated into the core JavaScript syntax and these extensions will be removed.
Support the proposed pipeline operator.
Support the proposed slice notation.
These extensions go beyond the base JavaScript syntax to support third-party features.
Highlight JSX. (Uses the JSX extension extension from core.)
Highlight TypeScript. (Uses the TypeScript extension extension from core.)
Old-style type assertions (e.g. <T>foo
) will be highlighted unless the jsx
option is also enabled.
Highlight Flow type annotations.
Highlight eslint configuration directives in comments.
These extensions allow you to personalize your highlighting in various ways.
Highlight unquoted object keys as strings, matching babel-sublime's behavior.
Use custom syntax highlighting inside template literals. Several sub-options are available:
By default, the special embed_configuration
disables this to avoid syntax recursion errors.
Highlight untagged template literals using a specified syntax. Example configuration:
{
"configurations": {
"My Config": {
"custom_templates": {
"default": "scope:text.html.basic"
}
}
}
}
This will highlight all untagged template literals as HTML. (The comments
option below will override this when it applies.)
Highlight tagged template literals based on the tag. Each key in tag
should be a JavaScript identifier representing a template literal tag. The associated value should be a string specifying a context to include.
For example, to highlight template strings with the style
tag as CSS, use the following configuration:
{
"configurations": {
"My Config": {
"custom_templates": {
"tags": {
"style": "scope:source.css"
}
}
}
}
}
Then, if you use “JS Custom - My Config” to highlight the following code, the contents of this template literal will be highlighted as CSS:
const myStyle = style`div { color: red }`;
Highlight untagged template literals based on a preceding block comment. Example configuration:
{
"configurations": {
"My Config": {
"custom_templates": {
"comments": {
"style": "scope:source.css"
}
}
}
}
}
Example JavaScript:
const myStyle = /*style*/`div { color: red }`;
const myStyle = /* style */`div { color: red }`;
Highlight untagged template literals based on the contents. Example configuration:
{
"configurations": {
"My Config": {
"custom_templates": {
"lookaheads": {
"select\\b": "scope:source.sql"
}
}
}
}
}
Example JavaScript:
const myQuery = `select 1 from dual`;
Highlight template string literals for Styled Components.
Inside custom template literals, clear all of the enclosing JavaScript scopes. Ordinarily, only the string
scope will be cleared. Enable this option if you're using a third-party tool that requires it.
These options don't affect the syntax highlighting itself, but rather the way that Sublime uses the syntax.
The name of the syntax as it will appear in the syntax selector. (If this is omitted, the syntax will be named “JS Custom - name”, where name is the key in the configurations
object.)
The top-level scope that will be used for the syntax. (If this is omitted, the scope will be “source.js.name”, where name is based on the key in the configurations
object.)
An array of file extensions. Files with the given extensions will use this syntax.
hidden
: boolean
If this is true
, the compiled syntax will not appear in the syntax menu or the command palette. It can still be referenced or included by other syntaxes.
Files whose first line matches the given regular expression will use this syntax.
These options have been superseded by newer, more flexible options.
Superseded by custom_templates.tags
.
Superseded by custom_templates.styled_components
.
Obsolete. Old-style type assertions will work unless JSX is enabled.