diff options
| author | kindlyway <githubaccountusing@proton.me> | 2026-07-11 12:02:53 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-11 08:02:53 -0400 |
| commit | aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa (patch) | |
| tree | 44bfea20f856c21bfd4c40a8ababb02a63f60a74 /lsp | |
| parent | docs: update generated annotations (diff) | |
| download | nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar.gz nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar.bz2 nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar.lz nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar.xz nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.tar.zst nvim-lspconfig-aa8da460fd9c74ff1bb8b45e92baacd24cff8aaa.zip | |
docs: qmlls6 #4470
Some distros like arch have a separate package with a cmd of qmlls6.
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/qmlls.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lsp/qmlls.lua b/lsp/qmlls.lua index ef5d5c12..12afc3bd 100644 --- a/lsp/qmlls.lua +++ b/lsp/qmlls.lua @@ -5,6 +5,11 @@ --- > QML Language Server is a tool shipped with Qt that helps you write code in your favorite (LSP-supporting) editor. --- --- Source in the [QtDeclarative repository](https://code.qt.io/cgit/qt/qtdeclarative.git/) +--- +--- Note: On some distros, the cmd of qmlls is `qmlls6`. You can override `cmd`: +--- ```lua +--- vim.lsp.config('qmlls', { cmd = { 'qmlls6' } }) +--- ``` ---@type vim.lsp.Config return { |
