-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Incorrect string interpolation highlighting group (#196)
* fix: Incorrect string interpolation highlighting group Co-authored-by: ghostbuster91 <[email protected]>
- Loading branch information
1 parent
6f9bc5a
commit 7d348f5
Showing
7 changed files
with
52 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
(template_body) @local.scope | ||
(lambda_expression) @local.scope | ||
|
||
|
||
(function_declaration | ||
name: (identifier) @local.definition) @local.scope | ||
|
||
(function_definition | ||
name: (identifier) @local.definition) | ||
|
||
(parameter | ||
name: (identifier) @local.definition) | ||
|
||
(binding | ||
name: (identifier) @local.definition) | ||
|
||
(val_definition | ||
pattern: (identifier) @local.definition) | ||
|
||
(var_definition | ||
pattern: (identifier) @local.definition) | ||
|
||
(val_declaration | ||
name: (identifier) @local.definition) | ||
|
||
(var_declaration | ||
name: (identifier) @local.definition) | ||
|
||
(identifier) @local.reference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters