diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-02-06 05:49:44 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2025-02-06 05:49:44 +0000 |
| commit | 00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f (patch) | |
| tree | 9b8da281a4fa66c90520dc681f971405bfd56896 /doc | |
| parent | feat: add wasm-language-tools (#3564) (diff) | |
| download | nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar.gz nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar.bz2 nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar.lz nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar.xz nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.tar.zst nvim-lspconfig-00dae9f5f4ad215d4561f2fd2f26478c48b0ca7f.zip | |
docs: update configs.md
skip-checks: true
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configs.md | 25 | ||||
| -rw-r--r-- | doc/configs.txt | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/doc/configs.md b/doc/configs.md index e4723a2e..12da97dd 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -349,6 +349,7 @@ Nvim by running `:help lspconfig-all`. - [vscoqtop](#vscoqtop) - [vtsls](#vtsls) - [vuels](#vuels) +- [wasm_language_tools](#wasm_language_tools) - [wgsl_analyzer](#wgsl_analyzer) - [yamlls](#yamlls) - [yang_lsp](#yang_lsp) @@ -12134,6 +12135,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vuels.lua:4](../lua/lspconfig/configs/vuels.lua#L4) +## wasm_language_tools + +https://github.com/g-plane/wasm-language-tools + +WebAssembly Language Tools aims to provide and improve the editing experience of WebAssembly Text Format. +It also provides an out-of-the-box formatter (a.k.a. pretty printer) for WebAssembly Text Format. + +Snippet to enable the language server: +```lua +require'lspconfig'.wasm_language_tools.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "wat_server" } + ``` +- `filetypes` : + ```lua + { "wat" } + ``` +- `single_file_support` : `true` + + ## wgsl_analyzer https://github.com/wgsl-analyzer/wgsl-analyzer diff --git a/doc/configs.txt b/doc/configs.txt index e4723a2e..12da97dd 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -349,6 +349,7 @@ Nvim by running `:help lspconfig-all`. - [vscoqtop](#vscoqtop) - [vtsls](#vtsls) - [vuels](#vuels) +- [wasm_language_tools](#wasm_language_tools) - [wgsl_analyzer](#wgsl_analyzer) - [yamlls](#yamlls) - [yang_lsp](#yang_lsp) @@ -12134,6 +12135,30 @@ Default config: - `root_dir` source (use "gF" to visit): [../lua/lspconfig/configs/vuels.lua:4](../lua/lspconfig/configs/vuels.lua#L4) +## wasm_language_tools + +https://github.com/g-plane/wasm-language-tools + +WebAssembly Language Tools aims to provide and improve the editing experience of WebAssembly Text Format. +It also provides an out-of-the-box formatter (a.k.a. pretty printer) for WebAssembly Text Format. + +Snippet to enable the language server: +```lua +require'lspconfig'.wasm_language_tools.setup{} +``` + +Default config: +- `cmd` : + ```lua + { "wat_server" } + ``` +- `filetypes` : + ```lua + { "wat" } + ``` +- `single_file_support` : `true` + + ## wgsl_analyzer https://github.com/wgsl-analyzer/wgsl-analyzer |
