Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use rustic-test-arguments by default #455

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions rustic-cargo.el
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Currently only working with lsp-mode."
(defvar rustic-test-buffer-name "*cargo-test*"
"Buffer name for test buffers.")

(defvar rustic-test-arguments ""
(defvar rustic-test-arguments rustic-default-test-arguments
"Holds arguments for 'cargo test', similar to `compilation-arguments`.
Tests that are executed by `rustic-cargo-current-test' will also be
stored in this variable.")
Expand Down Expand Up @@ -177,7 +177,7 @@ When calling this function from `rustic-popup-mode', always use the value of
rustic-test-arguments
rustic-default-test-arguments))
(t
rustic-default-test-arguments))))
rustic-test-arguments))))

;;;###autoload
(defun rustic-cargo-test-rerun ()
Expand Down