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 @@ -47,6 +47,7 @@
* Fix bug in lsp-odin where ~f-join~ collapses double slashes. Using ~format~ instead.
* Fix missing gopls inlay hints when ~lsp-use-plist~ is true
* 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.

** 9.0.0
* Add language server config for QML (Qt Modeling Language) using qmlls.
Expand Down
2 changes: 1 addition & 1 deletion clients/lsp-rust.el
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,7 @@ and run a compilation"
:label) runnable))
(pcase (aref cargo-args 0)
("run" (aset cargo-args 0 "build"))
("test" (when (-contains? (append cargo-args ()) "--no-run")
("test" (unless (-contains? (append cargo-args ()) "--no-run")
(cl-callf append cargo-args (list "--no-run")))))
(->> (append (list (executable-find "cargo"))
cargo-args
Expand Down