Skip to content

Commit 6ee8c05

Browse files
authored
Merge pull request #2 from humaans/fix-path-suffixes
Fix path suffixes
2 parents 3fb733d + b8e9edb commit 6ee8c05

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zed_rescript"
3-
version = "0.0.1"
3+
version = "0.1.0"
44
edition = "2021"
55
publish = false
66
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Open Settings with Cmd+, and add:
1313

1414
```json
1515
"file_types": {
16-
"ReScript": ["res"]
16+
"ReScript": ["res", "resi"]
1717
}
1818
```
1919

extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id = "rescript"
22
name = "ReScript"
33
description = "ReScript support."
4-
version = "0.0.1"
4+
version = "0.1.0"
55
schema_version = 1
66
authors = ["Karolis Narkevicius <hey@kn8.lt>"]
77
repository = "https://github.com/zed-industries/zed"

languages/rescript/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ReScript"
22
grammar = "rescript"
3-
path_suffixes = ["rescript"]
3+
path_suffixes = ["res", "resi"]
44
line_comments = ["// "]
55
block_comment = ["/* ", " */"]
66
brackets = [

0 commit comments

Comments
 (0)