1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 20:19:45 +00:00

feat(analyze): open current directory in Finder via "O" key (#19)

This commit is contained in:
huyixi
2025-10-09 14:43:18 +08:00
committed by GitHub
parent 56097e49a6
commit d34b617cb3
2 changed files with 20 additions and 1 deletions

View File

@@ -161,6 +161,7 @@ read_key() {
'd'|'D') echo "DELETE" ;;
'r'|'R') echo "RETRY" ;;
'?') echo "HELP" ;;
'o'|'O') echo "OPEN" ;;
$'\x03') echo "QUIT" ;; # Ctrl+C
$'\x7f'|$'\x08') echo "DELETE" ;; # Delete key (labeled "delete" on Mac, actually backspace)
$'\x1b')