-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
delete vendor directory when installing lsp #260
Conversation
80fa81d
to
46d231b
Compare
Signed-off-by: Rudi Grinberg <[email protected]>
46d231b
to
80d7c3f
Compare
I think you forgot to re-generate the opam file (you edited the template, but the current |
Additionally, when trying to pin a local version with the opam file re-generated, I get the following error (because of the dependency on Unix):
I guess the line in the template should actually be:
|
Further going down the rabbit hole, once the two problems above are fixed, it seems like the
|
@Gbury thanks for the investigation. Would you mind sending a PR with your fix? We'll fix the rest in it. |
done (cf #265 ) |
CHANGES: ## Features - Add keyword completion - Add go to declaration functionality to jump to a value's specification in a .mli file (ocaml/ocaml-lsp#294) ## Fixes - ocaml/ocaml-lsp#245: correctly use mutexes on OpenBSD (ocaml/ocaml-lsp#264) - ocaml/ocaml-lsp#268: Do not use vendored libraries when building the lsp package (ocaml/ocaml-lsp#260) - ocaml/ocaml-lsp#271: Clear diagnostics when files are closed - Disable non-prefix completion. There's no reliably way to trigger it and it can be slow.
Fix #259