rust: revert SPC m c c and move cargo-process-check to SPC m c v

SPC m c c is a convention.
This commit is contained in:
syl20bnr 2018-01-17 23:17:50 -05:00
parent 960b85157c
commit af625a9499
2 changed files with 3 additions and 2 deletions

View File

@ -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 |

View File

@ -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 ()