diff options
Diffstat (limited to 'mpd/ncmpcpp/bindings')
-rw-r--r-- | mpd/ncmpcpp/bindings | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/mpd/ncmpcpp/bindings b/mpd/ncmpcpp/bindings new file mode 100644 index 0000000..d035f7f --- /dev/null +++ b/mpd/ncmpcpp/bindings | |||
@@ -0,0 +1,46 @@ | |||
1 | # the t key isn't used and it's easier to press than /, so lets use it | ||
2 | def_key "t" | ||
3 | find | ||
4 | def_key "t" | ||
5 | find_item_forward | ||
6 | |||
7 | def_key "+" | ||
8 | show_clock | ||
9 | def_key "=" | ||
10 | volume_up | ||
11 | |||
12 | def_key "j" | ||
13 | scroll_down | ||
14 | def_key "k" | ||
15 | scroll_up | ||
16 | |||
17 | def_key "ctrl-u" | ||
18 | page_up | ||
19 | def_key "ctrl-d" | ||
20 | page_down | ||
21 | |||
22 | def_key "h" | ||
23 | previous_column | ||
24 | def_key "l" | ||
25 | next_column | ||
26 | |||
27 | def_key "." | ||
28 | show_lyrics | ||
29 | |||
30 | def_key "n" | ||
31 | next_found_item | ||
32 | def_key "N" | ||
33 | previous_found_item | ||
34 | |||
35 | def_key "J" | ||
36 | move_sort_order_down | ||
37 | def_key "K" | ||
38 | move_sort_order_up | ||
39 | |||
40 | def_key "g" | ||
41 | move_home | ||
42 | def_key "G" | ||
43 | move_end | ||
44 | |||
45 | def_key "0" | ||
46 | replay_song | ||