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
When installing vscoq-language-server on Windows machines through an installer like Coq Platform vscoqtop gets installed as vscoqtop.exe. Currently the function searchForVscoqtopInPath only searches for vscoqtop
does not use the proper path.delimiter for windows systems.
This could be fixed manually, but maybe it makes sense to use the which package, as both cases are covered by which("vscoqtop"), in trade for an extra import. In my few short experiments, the which package works well with both linux and windows
The text was updated successfully, but these errors were encountered:
When installing vscoq-language-server on Windows machines through an installer like Coq Platform vscoqtop gets installed as
vscoqtop.exe
. Currently the functionsearchForVscoqtopInPath
only searches forvscoqtop
vscoq/client/src/utilities/toolchain.ts
Line 117 in 26f3f1f
Additionally, the next line
vscoq/client/src/utilities/toolchain.ts
Line 118 in 26f3f1f
path.delimiter
for windows systems.This could be fixed manually, but maybe it makes sense to use the
which
package, as both cases are covered bywhich("vscoqtop")
, in trade for an extra import. In my few short experiments, the which package works well with both linux and windowsThe text was updated successfully, but these errors were encountered: