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.
Files changed (3) hide show
  1. package/README.md +2 -1
  2. package/package.json +1 -1
  3. 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
- | Ctrl+C | Interrupt running command |
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-compass",
3
- "version": "3.4.2",
3
+ "version": "3.4.3",
4
4
  "description": "Futuristic project navigator and runner for Node, Python, Rust, and Go",
5
5
  "main": "src/cli.js",
6
6
  "bin": {
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
- runProjectCommand(detailShortcutMap.get(normalizedInput), selectedProject);
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