From 618c444dab453f79be68172a5af3fb86325c32fb Mon Sep 17 00:00:00 2001 From: Sibi Prabakaran Date: Mon, 30 Jun 2025 10:58:21 +0530 Subject: [PATCH] fix: Type of rustic-cargo-nextest-exec-command This commit enhances the `rustic-cargo-nextest-exec-command` customization option by changing its type from a single string to a list of strings. --- .gitignore | 3 ++- rustic-cargo.el | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8b51124..4df30b3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,5 @@ /config.mk *autoloads.el test/test-project/target -test/test-project-single-crate/target \ No newline at end of file +test/test-project-single-crate/target +.env diff --git a/rustic-cargo.el b/rustic-cargo.el index 71bfca3..cae371d 100644 --- a/rustic-cargo.el +++ b/rustic-cargo.el @@ -37,7 +37,7 @@ (defcustom rustic-cargo-nextest-exec-command (list "nextest" "run") "Execute command to run nextest." - :type 'string + :type '(repeat string) :group 'rustic-cargo) (defcustom rustic-cargo-run-exec-command "run"