diff options
| author | Seiya <20365512+seiyab@users.noreply.github.com> | 2025-10-11 00:08:42 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 08:08:42 -0700 |
| commit | 50a5176795eaf4aa7e4806410e799c5dda21bc8f (patch) | |
| tree | 5b301b59adf479a6c80428725e7b436e3c5d7eaf /lsp | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.gz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.bz2 nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.lz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.xz nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.tar.zst nvim-lspconfig-50a5176795eaf4aa7e4806410e799c5dda21bc8f.zip | |
fix!: remove ocamlls #4118
ocamlls was added at #76.
It was because ocaml-lsp-server, which is official one, was too young.
In 2025, the official one works fine. On the other hand, unofficial
ocaml-language-server is not maintaned. We can no longer access its
GitHub repository.
Issue: #4115
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/ocamlls.lua | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lsp/ocamlls.lua b/lsp/ocamlls.lua deleted file mode 100644 index 90e9193a..00000000 --- a/lsp/ocamlls.lua +++ /dev/null @@ -1,20 +0,0 @@ ----@brief ---- ---- https://github.com/ocaml-lsp/ocaml-language-server ---- ---- `ocaml-language-server` can be installed via `npm` ---- ```sh ---- npm install -g ocaml-language-server ---- ``` - -local util = require 'lspconfig.util' - ----@type vim.lsp.Config -return { - cmd = { 'ocaml-language-server', '--stdio' }, - filetypes = { 'ocaml', 'reason' }, - root_dir = function(bufnr, on_dir) - local fname = vim.api.nvim_buf_get_name(bufnr) - on_dir(util.root_pattern('*.opam', 'esy.json', 'package.json')(fname)) - end, -} |
