Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.org
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
* Fix bug where persist was attempted when lsp-session-file is nil
* Debugging tests in Rust no longer runs all the tests prior to launching debug session.
* Add [[https://devenv.sh/][devenv]] and [[https://jj-vcs.github.io/jj/latest/][jj]] directories to the list of ignored directories (~lsp-file-watch-ignored-directories~)
* Fix bug where qmlls failed to load due to qml not being in ~lsp-language-id-configuration~

** 9.0.0
* Add language server config for QML (Qt Modeling Language) using qmlls.
Expand Down
5 changes: 4 additions & 1 deletion lsp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,7 @@ Changes take effect only when a new session is started."
("\\.nu$" . "nushell")
("\\.php$" . "php")
("\\.ps[dm]?1\\'" . "powershell")
("\\.qml$" . "qml")
("\\.rs\\'" . "rust")
("\\.spec\\'" . "rpm-spec")
("\\.sql$" . "sql")
Expand Down Expand Up @@ -1016,7 +1017,9 @@ Changes take effect only when a new session is started."
(message-mode . "plaintext")
(mu4e-compose-mode . "plaintext")
(odin-mode . "odin")
(odin-ts-mode . "odin"))
(odin-ts-mode . "odin")
(qml-mode . "qml")
(qml-ts-mode . "qml"))
"Language id configuration.")

(defvar lsp--last-active-workspaces nil
Expand Down