We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc713ea commit ba45c60Copy full SHA for ba45c60
editors/emacs/rust-analyzer.el
@@ -143,7 +143,8 @@
143
144
(defun rust-analyzer-run (runnable)
145
(interactive (list (rust-analyzer--select-runnable)))
146
- (-let (((&hash "env" "bin" "args" "label") runnable))
+ (-let* (((&hash "env" "bin" "args" "label") runnable)
147
+ (compilation-environment (-map (-lambda ((k v)) (concat k "=" v)) (ht-items env))))
148
(compilation-start
149
(string-join (append (list bin) args '()) " ")
150
;; cargo-process-mode is nice, but try to work without it...
0 commit comments