rescript-vscode
rescript-vscode copied to clipboard
Official VSCode plugin for ReScript
It looks like the rename happens based on the last known location for a token. This means that if you create a syntax error in your script and try to...
The [playground](https://rescript-lang.org/try) has a hidden feature that converts reason to rescript. (the settings, toggle RE/RES). Whatever is doing this, I'm assuming it could be incorporated into this plugin. Highlight a...
Is it possible to get Emmet support in ReScript JSX? https://code.visualstudio.com/docs/editor/emmet
This plugin does not provide a way to find or navigate to symbols if you know their name. When I use the go to any bar with `#` or `@`...
I've noticed that hovering record labels (that are optionals) in pattern matches does not expand the record name they contain like most other hovers do. An example: ```rescript type otherRecord...
OS: Windows I created a project with a path containing the '#' symbol. 😂 When the rescript watcher found a problem in a source code it shows the problem in...
To reproduce with rescript 9.1.4: ```rescript module type Database = { let query: string => unit } module MakeHandler = (Db: Database) => { // Go to definition here fails,...
Greetings, Having the ability to autocomplete props whose type is variant/polymorphic variant should be pretty neat. Right now you can see the type of the prop  but can't actually...
In the current state of affairs only the first line of the comment is treated as such, the rest is rendered as is  All grammar is ignored, even in...
Version: `1.2.0` Related: #311 I think I've found several bugs around type alias to record type. Assume we have the following code: ```rescript type foo` instead of `bar`. - This...