diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-16 09:33:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-16 09:33:58 -0700 |
| commit | 1e3b5e4ee341304a703ba97d76d6e9187a1f775f (patch) | |
| tree | 98c200fa02983fa5d8e58ce8ac2e22e40bd672ec /lua | |
| parent | docs: update configs.md (diff) | |
| parent | docs(qmlls): point to official sources (diff) | |
| download | nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar.gz nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar.bz2 nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar.lz nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar.xz nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.tar.zst nvim-lspconfig-1e3b5e4ee341304a703ba97d76d6e9187a1f775f.zip | |
Merge #3647 cleanup QML-related LSPs
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/lspconfig/configs/qml_lsp.lua | 16 | ||||
| -rw-r--r-- | lua/lspconfig/configs/qmlls.lua | 6 |
2 files changed, 4 insertions, 18 deletions
diff --git a/lua/lspconfig/configs/qml_lsp.lua b/lua/lspconfig/configs/qml_lsp.lua deleted file mode 100644 index 0f334a32..00000000 --- a/lua/lspconfig/configs/qml_lsp.lua +++ /dev/null @@ -1,16 +0,0 @@ -local util = require 'lspconfig.util' - -return { - default_config = { - cmd = { 'qml-lsp' }, - filetypes = { 'qmljs' }, - root_dir = util.root_pattern '*.qml', - }, - docs = { - description = [[ -https://invent.kde.org/sdk/qml-lsp - -LSP implementation for QML (autocompletion, live linting, etc. in editors) - ]], - }, -} diff --git a/lua/lspconfig/configs/qmlls.lua b/lua/lspconfig/configs/qmlls.lua index 07bcaf66..6c6093a7 100644 --- a/lua/lspconfig/configs/qmlls.lua +++ b/lua/lspconfig/configs/qmlls.lua @@ -9,9 +9,11 @@ return { }, docs = { description = [[ -https://github.com/qt/qtdeclarative +https://doc.qt.io/qt-6/qtqml-tooling-qmlls.html -LSP implementation for QML (autocompletion, live linting, etc. in editors), +> 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/) ]], }, } |
