diff options
| -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 |
