Ilari Laitinen
Ilari Laitinen
I've been running into an issue that looks very similar. I can reproduce it by simply cloning the official project template and changing the current working directory to `src`. Plugin...
> ``` > - let g:rescript_exe = getcwd() . "/" . l:res_bin_dir . "/rescript.exe" > + let g:rescript_exe = fnamemodify(l:res_bin_dir, ":p:h") . "/rescript.exe" > endif > > " These variables...
Okay, the changes above were just a partial fix. They fixed these: - `rescript#Format` (`:RescriptFormat`) - `rescript#Clean` (`:RescriptClean` and `:RescriptCleanWithDeps`) - `rescript#Build` (`:RescriptBuild` and `:RescriptBuildWithDeps`) - probably `rescript#ReasonToRescript`, too (`:RescriptUpgradeFromReason`)...
As a side note, I noticed that the analysis exe returns `null` type hint when no type hint is available. This causes a nasty-looking error message which could be handled...
I've noticed the current line being echoed on the status line, too. Not when pressing enter but often when hitting `o` in normal mode. I'm typically using `vim-airline`, which displays...