Breaking Changes:
- Remove vendored ReScript LS and remove native Vim Commands (e.g.
:RescriptBuild
, etc)- The ReScript Language Server will now be shipped as a dedicated npm package rescript-language-server
- Migrate to the official language server as described in our README instructions
Improvements:
- Improve syntax highlighting for escaped backticks in interpolated strings (#55)
- Highlight improvements (#69)
- Support
commentstring
. #76
Improvements:
- Add syntax highlighting for int polyvariants
- Improved syntax highlighting for string interpolation (#44)
- Updated vendored rescript-vscode server to
1.1.3
(see changes introduced in 1.1.2 and 1.1.3)- Rename support for let-binding, types, record labels, module names etc
- Important: If you are using coc.nvim, make sure to upgrade to coc's latest
release
version first, otherwise renaming will not work across files! - Jump to type definition support
- New jump-to-definition behavior when having
.res
and.resi
files in place
- Fixes an issue where
:RescriptTypeHint
,:RescriptUpgrade
fail with an 127 exit code (due to missing analysis binaries) - Fixes
coc
server crashing issues
Improvements:
- Add support for the new
rescript
npm package. This version will handle both,bs-platform
andrescript
projects.- Tip: Running
:RescriptInfo
will show you if the plugin is running inlegacy
(bsc.exe
/bsb.exe
) ormodern
(rescript.exe
) mode
- Tip: Running
- Updated vendored rescript-vscode server to
1.1.1
(see changes here)
Breaking Changes:
We slimmed down our vendored LSP code and changed the binary paths. Within your CocConfig
, change your server path accordingly:
"languageserver": {
"rescript": {
"enable": true,
- "module": "~/.config/nvim/plugged/vim-rescript/rescript-vscode/extension/server/out/server.js",
+ "module": "~/.config/nvim/plugged/vim-rescript/server/out/server.js",
"args": ["--node-ipc"],
"filetypes": ["rescript"],
"rootPatterns": ["bsconfig.json"]
}
}
We also renamed the following plugin commands:
:RescriptBuildWorld
to:RescriptBuildWithDeps
:RescriptCleanWorld
to:RescriptBuildWithDeps
Improvements:
- Upgrade to
[email protected]
(see changes here)- Includes autocompletion for
->
/~
(labeled arguments).
- Includes autocompletion for
Example:
let l = Belt.List.make(3, 1)
l-> //starting here, you will get suggestions for functions that accept a Belt.List.t
let test = (~name: string, ~age: int) => {
Js.log2(name, age)
}
test(~ // starting here, you will get suggestions for `name` and `age`
- Improved syntax highlighting for polyvariants #31
Bugfixes:
- Fix an issue that causes the plugin to change cwd for the whole vim instance (e.g. in a monorepo setup) #32
Improvements:
- Upgrade to
[email protected]
(see changes here)- Improved type-hinting, and better Windows support for our LSP service
Bugfixes:
- Fix a syntax error in autocmd file pattern which caused weird error on buffer reload
- Fix highlighting of nested multiline comments
Improvements:
- Upgrade to
[email protected]
(see changes here) - Add proper monorepo support (
e.g. yarn workspaces
)- Detects
bsb
/bsc
correctly for each file separately and finds the right (sub-)project context - Heuristic for detecting the binaries: For the current file, find the nearest
node_modules/bs-platform
folder for the binaries - Adds an
augroup RescriptAutoProjectEnv
that sets the environment on every.res
/.resi
related read / write / new file event - Will also update the environment on each
format
andbuild
call to make it sync up for all non-rescript buffers - On each env update, it updates the local working directory to the updated project root path as well
- Detects
- Add new commands
:RescriptBuildWorld
and:RescriptCleanWorld
for cleaning / building all sources + dependencies
Bugfixes:
- Fixes issue with long template strings breaking the syntax highlighting
- Fixes an issue where
:RescriptBuild
would fail in non-rescript buffers due to a wrongly scoped script variable (was buffer only)
Improvements:
- Add detected
rescript-vscode
plugin version for:RescriptInfo
- Upgrades to
rescript-vscode-1.0.1
with improved editor-support (see changelog) - Improved syntax highlighting for ReScript decorators
Breaking Changes:
- Moved
rescript-vscode-1.0.0
torescript-vscode
(make sure to update your coc-vim config to point to the new path!)
- Fixes installation issues that required an additional
npm install
in the rescript-vscode vendor folder
- Vendor rescript-vscode-1.0.0 lsp + rescript-editor-support
- Fixes issue where certain compiler versions could not be detected (x.x.x-dev.y)
:RescriptInfo
now outputs more relevant executable paths for debugging purposes- Updates
rescript#Complete()
to handle the new data format introduced in editor-support 1.0.0
Breaking Changes:
g:rescript_type_hint_bin
renamed tog:rescript_editor_support_exe
g:resc_command
renamed tog:rescript_compile_exe
g:resb_command
renamed tog:rescript_build_exe