Skip to content

Commit

Permalink
remove ^$ from injection regexs
Browse files Browse the repository at this point in the history
  • Loading branch information
nrdxp authored and the-mikedavis committed Sep 6, 2022
1 parent 665e27f commit 5ed751c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ source = { git = "https://github.com/omertuc/tree-sitter-go-work", rev = "6dd9dd
[[language]]
name = "javascript"
scope = "source.js"
injection-regex = "^(js|javascript)$"
injection-regex = "(js|javascript)"
file-types = ["js", "jsx", "mjs", "cjs"]
shebangs = ["node"]
roots = []
Expand Down Expand Up @@ -370,7 +370,7 @@ grammar = "javascript"
[[language]]
name = "typescript"
scope = "source.ts"
injection-regex = "^(ts|typescript)$"
injection-regex = "(ts|typescript)"
file-types = ["ts"]
shebangs = []
roots = []
Expand All @@ -385,7 +385,7 @@ source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev =
[[language]]
name = "tsx"
scope = "source.tsx"
injection-regex = "^(tsx)$" # |typescript
injection-regex = "(tsx)" # |typescript
file-types = ["tsx"]
roots = []
# TODO: highlights-params
Expand Down Expand Up @@ -1183,7 +1183,7 @@ source = { git = "https://github.com/milisims/tree-sitter-org", rev = "698bb1a34
[[language]]
name = "solidity"
scope = "source.sol"
injection-regex = "^(sol|solidity)$"
injection-regex = "(sol|solidity)"
file-types = ["sol"]
roots = []
comment-token = "//"
Expand Down Expand Up @@ -1400,7 +1400,7 @@ source = { git = "https://github.com/archseer/tree-sitter-cairo", rev = "5155c6e
[[language]]
name = "cpon"
scope = "scope.cpon"
injection-regex = "^cpon$"
injection-regex = "cpon"
file-types = ["cpon", "cp"]
roots = []
auto-format = true
Expand Down

0 comments on commit 5ed751c

Please sign in to comment.