We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e046032 commit 30fc41fCopy full SHA for 30fc41f
1 file changed
src/cm/commandRegistry.js
@@ -570,6 +570,17 @@ function registerCoreCommands() {
570
return true;
571
},
572
});
573
+ addCommand({
574
+ name: "run-tests",
575
+ description: "Run Tests",
576
+ key: "Ctrl-Shift-T",
577
+ readOnly: true,
578
+ requiresView: false,
579
+ run() {
580
+ acode.exec("run-tests");
581
+ return true;
582
+ },
583
+ });
584
585
// Additional editor-centric helpers mapped to CodeMirror primitives that have existing key bindings in defaults.
586
addCommand({
0 commit comments