diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-09 05:57:01 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-09 05:57:01 +0000 |
| commit | b94a4c2ff309e232cfacdf8fc7658bd93919a770 (patch) | |
| tree | 596677b37e841bc73b8111904a715844b629b39a /doc | |
| parent | feat: add hlasm support (#3098) (diff) | |
| download | nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar.gz nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar.bz2 nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar.lz nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar.xz nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.tar.zst nvim-lspconfig-b94a4c2ff309e232cfacdf8fc7658bd93919a770.zip | |
docs: update server_configurations.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/server_configurations.md | 34 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 34 |
2 files changed, 68 insertions, 0 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index e94bd086..1a3b2106 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -116,6 +116,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [helm_ls](#helm_ls) - [hhvm](#hhvm) - [hie](#hie) +- [hlasm](#hlasm) - [hls](#hls) - [hoon_ls](#hoon_ls) - [html](#html) @@ -5243,6 +5244,39 @@ require'lspconfig'.hie.setup{} ``` +## hlasm + + `hlasm_language_server` is a language server for the High Level Assembler language used on IBM SystemZ mainframes. + + To learn how to configure the HLASM language server, see the [HLASM Language Support documentation](https://github.com/eclipse-che4z/che-che4z-lsp-for-hlasm). + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.hlasm.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "hlasm_language_server" } + ``` + - `filetypes` : + ```lua + { "hlasm" } + ``` + - `root_dir` : + ```lua + root_pattern(".hlasmplugin") + ``` + - `single_file_support` : + ```lua + true + ``` + + ## hls https://github.com/haskell/haskell-language-server diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index e94bd086..1a3b2106 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -116,6 +116,7 @@ autogenerated from the Lua files. You can view this file in Nvim by running - [helm_ls](#helm_ls) - [hhvm](#hhvm) - [hie](#hie) +- [hlasm](#hlasm) - [hls](#hls) - [hoon_ls](#hoon_ls) - [html](#html) @@ -5243,6 +5244,39 @@ require'lspconfig'.hie.setup{} ``` +## hlasm + + `hlasm_language_server` is a language server for the High Level Assembler language used on IBM SystemZ mainframes. + + To learn how to configure the HLASM language server, see the [HLASM Language Support documentation](https://github.com/eclipse-che4z/che-che4z-lsp-for-hlasm). + + + +**Snippet to enable the language server:** +```lua +require'lspconfig'.hlasm.setup{} +``` + + +**Default values:** + - `cmd` : + ```lua + { "hlasm_language_server" } + ``` + - `filetypes` : + ```lua + { "hlasm" } + ``` + - `root_dir` : + ```lua + root_pattern(".hlasmplugin") + ``` + - `single_file_support` : + ```lua + true + ``` + + ## hls https://github.com/haskell/haskell-language-server |
