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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
##
## Key bindings for ncmpc (~/.ncmpc/keys)
##
##
## Its possible to bind maximum three keys to a command
## Keys can be defined with a character or a decimal/hexadecimal value.
## A command can be disabled by binding it to 0 (key bind quit = 0).
##
## Example - bind the Q key to quit in three different ways:
## (character, decimal [81], hexadecimal [51])
##
## key quit = 'Q'
## key quit = 81
## key quit = 0x51
##
## Quit
key quit = 'q', 'Q', 3
## Move cursor up
key up = 259, 'k'
## Move cursor down
key down = 258, 'j'
## Home
key home = 262, 1
## End
key end = 360, 5
## Page up
key pgup = 339
## Page down
key pgdn = 338
## Help screen
#key screen-help = '1', 265, 'h'
## Playlist screen
key screen-playlist = '2', 266
## Browse screen
key screen-browse = '3', 267
## Play/Enter directory
key play = 13
## Pause
key pause = 'P'
## Stop
key stop = 's', 263
## Next track
key next = 62
## Previous track
key prev = 60
## Seek forward
key seek-forward = 'f'
## Seek backward
key seek-backward = 'b'
## Increase volume
key volume-up = 43, 261
## Decrease volume
key volume-down = 45, 260
## Select/deselect song in playlist
key select = 32
## Delete song from playlist
key delete = 330, 'd'
## Shuffle playlist
key shuffle = 'Z'
## Clear playlist
key clear = 'c'
## Toggle repeat mode
key repeat = 'r'
## Toggle random mode
key random = 'z'
## Toggle crossfade mode
key crossfade = 'x'
## Start a music database update
key db-update = 21
## Save playlist
key save = 'S'
## Add url/file to playlist
key add = 'a'
## Move item up
key move-up = 11
## Move item down
key move-down = 10
## Update screen
key update = 12
## Toggle find mode
key wrap-mode = 'w'
## Toggle auto center mode
key autocenter-mode = 'U'
## Next screen
key screen-next = 9
## Previous screen
key screen-prev = 353
## Forward find
key find = 47
## Forward find next
key find-next = 'n'
## Backward find
key rfind = 63
## Backward find previous
key rfind-next = 'p'
## Key configuration screen
#key screen-keyedit = 'K'
|