You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting from ReScript language server v1.64.0, the internal file watcher (chokidar) was removed ([PR #1096](https://github.com/rescript-lang/rescript-vscode/pull/1096)). The LSP server now expects the editor to watch for file changes and notify the server via the standard LSP `workspace/didChangeWatchedFiles` mechanism.
13
+
14
+
**Recommended workaround** Since this is not currently implemented in this extension it is recommended to pin rescript-language-server to 1.62.0, which is the last version that includes the built-in chokidar file watcher:
15
+
16
+
```json
17
+
{
18
+
"lsp": {
19
+
"rescript-language-server": {
20
+
"settings": {
21
+
"version": "1.62.0"
22
+
}
23
+
}
24
+
}
25
+
}
26
+
```
27
+
28
+
We're tracking this issue in [#12](https://github.com/humaans/rescript-zed/issues/12).
29
+
10
30
## Settings
11
31
12
32
```json
@@ -31,7 +51,7 @@ With `version` you can point to a specific npm version of the [@rescript/languag
31
51
32
52
## Developing
33
53
34
-
Zed and it's support for extensions is being actively developed. The current workflow that can be used to build this extension locally and install it into Zed is:
54
+
Zed and its support for extensions is being actively developed. The current workflow that can be used to build this extension locally and install it into Zed is:
0 commit comments