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