blob: ef5d5c12c9fdf7089917bb644eaab72eb56c22a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---@brief
---
--- https://doc.qt.io/qt-6/qtqml-tooling-qmlls.html
---
--- > 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/)
---@type vim.lsp.Config
return {
cmd = { 'qmlls' },
filetypes = { 'qml', 'qmljs' },
root_markers = { '.git' },
}
|