aboutsummaryrefslogtreecommitdiffstats
path: root/lsp
diff options
context:
space:
mode:
authorVit Gottwald <vit.gottwald@gmail.com>2025-04-21 16:59:19 +0200
committerGitHub <noreply@github.com>2025-04-21 07:59:19 -0700
commit38653f718f02d23c909b9dffcf6cc27c3a13f574 (patch)
tree98cb85074c9da62d844bbb5e45ce74f249155be7 /lsp
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar.gz
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar.bz2
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar.lz
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar.xz
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.tar.zst
nvim-lspconfig-38653f718f02d23c909b9dffcf6cc27c3a13f574.zip
feat: PL/I ls #3684
Diffstat (limited to 'lsp')
-rw-r--r--lsp/pli.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lsp/pli.lua b/lsp/pli.lua
new file mode 100644
index 00000000..4292cad9
--- /dev/null
+++ b/lsp/pli.lua
@@ -0,0 +1,10 @@
+---@brief
+---
+--- `pli_language_server` is a language server for the PL/I language used on IBM SystemZ mainframes.
+---
+--- To learn how to configure the PL/I language server, see the [PL/I Language Support documentation](https://github.com/zowe/zowe-pli-language-support).
+return {
+ cmd = { 'pli_language_server' },
+ filetypes = { 'pli' },
+ root_markers = { '.pliplugin' },
+}