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
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,7 @@ You'll find all ReScript specific settings under the scope `rescript.settings`.
105
105
| Inlay Hints (experimental) | This allows an editor to place annotations inline with text to display type hints. Enable using `rescript.settings.inlayHints.enable: true`|
106
106
| Code Lens (experimental) | This tells the editor to add code lenses to function definitions, showing its full type above the definition. Enable using `rescript.settings.codeLens: true`|
107
107
| Signature Help | This tells the editor to show signature help when you're writing function calls. Enable using `rescript.settings.signatureHelp.enabled: true`|
108
+
| Compile Status Indicator | Shows compile status in the status bar (Compiling, Errors, Warnings, Success). Toggle via `rescript.settings.compileStatus.enable`. Clicking in Error/Warning modes focuses the Problems view. |
108
109
109
110
**Default settings:**
110
111
@@ -126,6 +127,9 @@ You'll find all ReScript specific settings under the scope `rescript.settings`.
126
127
127
128
// Enable (experimental) code lens for function definitions.
128
129
"rescript.settings.codeLens":true
130
+
131
+
// Show compile status in the status bar (compiling/errors/warnings/success)
Copy file name to clipboardExpand all lines: package.json
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -206,6 +206,11 @@
206
206
],
207
207
"default": null,
208
208
"description": "Path to the directory where platform-specific ReScript binaries are. You can use it if you haven't or don't want to use the installed ReScript from node_modules in your project."
209
+
},
210
+
"rescript.settings.compileStatus.enable": {
211
+
"type": "boolean",
212
+
"default": true,
213
+
"description": "Show compile status in the status bar (compiling/errors/warnings/success)."
0 commit comments