1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Quetty Key Bindings Configuration
# Default key bindings for all application actions
# For detailed configuration reference, see: docs/CONFIGURATION.md
# =============================================================================
# KEY BINDINGS CONFIGURATION
# =============================================================================
[]
# Global keys
= "q" # Key to quit the application
= "h" # Key to show help screen
= "t" # Key to toggle theme
= "r" # Key to refresh messages (reload from beginning)
# Navigation keys
= "j" # Key to move down (vim-style)
= "k" # Key to move up (vim-style)
= "n" # Key to go to next page
= "p" # Key to go to previous page
= "]" # Alternative key for next page
= "[" # Alternative key for previous page
# Message actions
= "s" # Key to send message to DLQ
= "s" # Key to resend message from DLQ
= "S" # Key to resend and delete from DLQ
= "x" # Key to delete message
= "x" # Alternative key to delete message
# Message details actions (when viewing message content)
= "c" # Key for Ctrl+key copy operation
= "y" # Key for yank/copy operation
= "s" # Key for Ctrl+key send edited message
= "s" # Key for Ctrl+key replace message
# Bulk selection keys
= " " # Key to toggle message selection (space)
= "a" # Key to select all messages on current page
# Queue/Namespace selection
= "o" # Key to open queue selection
= "o" # Key to open namespace selection
# Message composition keys (in messages view)
= "d" # Key to toggle between main queue and dead letter queue
= "m" # Key to compose multiple messages with repeat count
= "n" # Key for Ctrl+key to compose single message
# Confirmation keys
= "y" # Key to confirm yes in prompts
= "n" # Key to confirm no in prompts
# =============================================================================
# ENVIRONMENT VARIABLE REFERENCE
# =============================================================================
# You can override any key binding using environment variables:
# Format: KEYS__KEY_NAME (double underscore)
#
# Examples:
# export KEYS__KEY_QUIT="q"
# export KEYS__KEY_HELP="?"
# export KEYS__KEY_THEME="t"
#
# For detailed configuration documentation, see: docs/CONFIGURATION.md