diff --git a/layers/+lang/rust/README.org b/layers/+lang/rust/README.org index bb02af6e5..5dcfae1db 100644 --- a/layers/+lang/rust/README.org +++ b/layers/+lang/rust/README.org @@ -65,6 +65,7 @@ To enable automatic buffer formatting on save, set the variable =rust-format-on- | ~SPC m c t~ | run the current test with Cargo | | ~SPC m c u~ | update dependencies with Cargo | | ~SPC m c x~ | execute a project with Cargo | +| ~SPC m c v~ | check (verify) a project with Cargo | | ~SPC m g g~ | jump to definition | | ~SPC m h h~ | describe symbol at point | | ~SPC m t~ | run tests with Cargo | diff --git a/layers/+lang/rust/packages.el b/layers/+lang/rust/packages.el index bad9a5c70..9438c5061 100644 --- a/layers/+lang/rust/packages.el +++ b/layers/+lang/rust/packages.el @@ -33,8 +33,7 @@ "c." 'cargo-process-repeat "cC" 'cargo-process-clean "cX" 'cargo-process-run-example - "cc" 'cargo-process-check - "cb" 'cargo-process-build + "cc" 'cargo-process-build "cd" 'cargo-process-doc "cD" 'cargo-process-doc-open "ce" 'cargo-process-bench @@ -47,6 +46,7 @@ "ct" 'cargo-process-current-test "cu" 'cargo-process-update "cx" 'cargo-process-run + "cv" 'cargo-process-check "t" 'cargo-process-test)))) (defun rust/post-init-flycheck ()