Skip to content

Commit

Permalink
Merge pull request #2236 from kidonng/patch-1
Browse files Browse the repository at this point in the history
Add `.mts` and `.cts` to TypeScript file extensions
  • Loading branch information
sharkdp authored Sep 4, 2022
2 parents 546dcf6 + d7b6519 commit ca9843f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
- Update `Command Help` syntax, see #2255
- `Julia`: Fix syntax highlighting for function name starting with `struct`, see #2230
- Minor update to `LiveScript`, see #2291
- Associate `.mts` and `.cts` files with the `TypeScript` syntax. See #2236 (@kidonng)

## Themes

Expand Down
2 changes: 2 additions & 0 deletions assets/syntaxes/02_Extra/TypeScript.sublime-syntax
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
name: TypeScript
file_extensions:
- ts
- mts
- cts
scope: source.ts
contexts:
main:
Expand Down
1 change: 1 addition & 0 deletions tests/syntax-tests/highlighted/TypeScript/example.cts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const dummy: string = "Regression test for https://github.com/sharkdp/bat/pull/2236";
1 change: 1 addition & 0 deletions tests/syntax-tests/source/TypeScript/example.cts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const dummy: string = "Regression test for https://github.com/sharkdp/bat/pull/2236";

0 comments on commit ca9843f

Please sign in to comment.