A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/commands.rs')
| -rw-r--r-- | src/commands.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commands.rs b/src/commands.rs index c85911b..78dea1a 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -63,7 +63,9 @@ commands!( /// Cancels current running rust-analyzer check process @ RACancelFlycheck: "cancel-flycheck", /// Opens Cargo.toml file for this workspace - @ RAOpenCargoToml: "open-cargo-toml" + @ RAOpenCargoToml: "open-cargo-toml", + /// Runs the test at the cursor + @ RARunTest: "run-test", ); #[derive(Debug, Default)] |