vim-rescript
vim-rescript copied to clipboard
Hello, I'm using this plugin for several months now. Actually the server version is quite outdated. Locally I just replaced the server folder with newer ones from the vscode plugin....
Everything runs fine on Linux ARM with the exception that the server does not use the correct analysis binary. A [change is needed to the server](https://github.com/ellbur/rescript-vscode/commit/737a6a47df317eeca7f5a815507d6936b6415baa) to select a different...
Under the hood, `rescript-editor-analysis.exe` returns `null` instead of an object/dict when a completion item has no documentation. This results in multiple errors in `rescript#Complete`. A minimal example with `vim-plug` and...
`vim-rescript` tries to use `complete`: https://github.com/rescript-lang/vim-rescript/blob/faeeb2deef1ad0ec67fc892ceeb9949f3bf2d77c/autoload/rescript.vim#L346 The underlying `rescript-editor-analysis.exe` expects `completion`: https://github.com/rescript-lang/rescript-vscode/blob/master/analysis/src/Cli.ml#L66
For some reason, on my setup, the following code results in the wrong paths: let g:rescript_bsc_exe = getcwd() . "/" . l:res_bin_dir . "/bsc.exe" let g:rescript_bsb_exe = getcwd() . "/"...
A common VIM workflow is to create tags file (often via `ctags`). There is no ReScript / ctags language extension, but maybe this is not even needed. In a first...
For some reason `finddir` returns the full path on my system so `getCwd() . finddir()` causes the path to be `/Users/user/path/to/project//Users/user/path/to/project/node_modules/...`. I had to remove getCwd() calls from `rescript#UpdateProjectEnv()` and...
Hey there, I'm not sure whether this is some issue with my editor or that of the plugin, but every time I press enter or hit `o` in normal mode,...
When I select an entry from the omni completion menu, the existing prefix is duplicated. I'm using the latest `vim-rescript` and the suggested omni completion configuration (without `coc-vim`). The problem...
https://github.com/sheerun/vim-polyglot is a popular repo for getting all languages support (so that you don't install each lsp individually) should this be added to the list to make it simpler for...