ocaml-lsp icon indicating copy to clipboard operation
ocaml-lsp copied to clipboard

OCaml Language Server Protocol implementation

Results 225 ocaml-lsp issues
Sort by recently updated
recently updated
newest added

Hello, I can't find any documentation nor information on how to enable code-lens or inlay-hints with ocaml-lsp for neovim. I understand that the ocaml-lsp has those features from testing it...

The OCaml LSP Server prefixes all custom requests with `ocamllsp/capabilityName`. However, there is a need to modify the input/output of certain custom requests over time. (#1330, #1450). Tracking changes to...

``` #=== ERROR while compiling ocaml-lsp-server.1.20.1-4.14 =======================# # context 2.3.0 | freebsd/x86_64 | ocaml-base-compiler.4.14.2 | https://opam.ocaml.org#f665120a12cde1268c7f02fa4acf6502cc04c78b # path /usr/home/mro/.opam/4.14.2b/.opam-switch/build/ocaml-lsp-server.1.20.1-4.14 # command /usr/home/mro/.opam/4.14.2b/bin/dune build -p ocaml-lsp-server -j 3 @install # exit-code...

It'd be nice to be able to jump directly to the dune file corresponding to the current buffer.

enhancement

Currently, users need to use the general VS Code setting `editor.inlayHints.enabled` to control inlay hints. While this works, having language-specific controls similar to what rust-analyzer provides would be helpful. For...

enhancement

Hello, I am using dune to compile my code, but unfortunately for every file, I get several unknown configuration tag errors from ocamllsp (for example: Unknown configuration tag "INDEX" ocamllsp...

The result of the search by type should include a complete location (`URI` + `Range`) but only includes the `Range`. From a search result, it is therefore impossible to jump...

After selecting an expression in a Reason file and pressing the quick fix action in VS Code to Extract Local the outputted syntax is in OCaml syntax rather than Reason....

I'm running a continuous dune build in the `_build_lsp` directory (via `dune build -w --build-dir=_build_lsp`) in order to be able to run other dune commands in the default `_build` directory....

enhancement

Hi all, I wish to implement e2e-testing for my custom language server. When looking at how the OCaml lsp implements this, it seems that it uses the lsp-fiber package to...