emacs/code/elpa/lsp-mode-20240727.1013/lsp-qml.el

44 lines
1.4 KiB
EmacsLisp
Raw Normal View History

2024-07-28 16:03:37 +00:00
;;; lsp-qml.el --- LSP Client for QML -*- lexical-binding: t; -*-
2024-07-28 16:03:37 +00:00
;; Copyright (C) 2024 emacs-lsp maintainers
;; Author: emacs-lsp maintainers
2024-07-28 16:03:37 +00:00
;; Keywords: lsp, qt, qml, gui,
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
2024-07-28 16:03:37 +00:00
;; LSP Client for QML (Qt Modeling Language).
;;; Code:
(require 'lsp-mode)
2024-07-28 16:03:37 +00:00
(defcustom lsp-qml-server-command "qmlls"
"Server executable to use."
:type 'string
:group 'lsp-qml
:package-version '(lsp-mode . "9.0.0"))
(lsp-register-client
2024-07-28 16:03:37 +00:00
(make-lsp-client :new-connection (lsp-stdio-connection
(lambda ()
(executable-find lsp-qml-server-command)))
:activation-fn (lsp-activate-on "qml")
:priority -1
2024-07-28 16:03:37 +00:00
:server-id 'qml-ls))
2024-07-28 16:03:37 +00:00
(provide 'lsp-qml)
;;; lsp-qml.el ends here