project-compass 3.4.2 → 3.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/package.json +1 -1
- package/src/cli.js +7 -1
package/README.md
CHANGED
|
@@ -48,7 +48,8 @@ project-compass [--dir /path/to/workspace] [--studio] [--version]
|
|
|
48
48
|
| **Shift+L** | Rerun last command |
|
|
49
49
|
| **Shift+Q** | Quit app (with confirmation if tasks run) |
|
|
50
50
|
| ? | Toggle help overlay |
|
|
51
|
-
|
|
|
51
|
+
| Shift+Q | Quit app (with confirmation if tasks run) |
|
|
52
|
+
| **Ctrl+C** | Force quit and kill all background tasks |
|
|
52
53
|
|
|
53
54
|
## Orbit Task Manager
|
|
54
55
|
|
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -455,7 +455,13 @@ function Compass({rootPath, initialView = 'navigator'}) {
|
|
|
455
455
|
return;
|
|
456
456
|
}
|
|
457
457
|
if (viewMode === 'detail' && normalizedInput && detailShortcutMap.has(normalizedInput)) {
|
|
458
|
-
|
|
458
|
+
if (key.shift) {
|
|
459
|
+
runProjectCommand(detailShortcutMap.get(normalizedInput), selectedProject);
|
|
460
|
+
return;
|
|
461
|
+
} else if (!isNaN(parseInt(normalizedInput))) {
|
|
462
|
+
runProjectCommand(detailShortcutMap.get(normalizedInput), selectedProject);
|
|
463
|
+
return;
|
|
464
|
+
}
|
|
459
465
|
}
|
|
460
466
|
});
|
|
461
467
|
|