blob: 9934aa32aad7c451b72e2266f4a46588e283527b (
plain)
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
|
##
## ~/.ncmpcpp/bindings
## bindings/keys configuration file for ncmpcpp (>= 0.6)
##
## See /usr/share/doc/ncmpcpp/examples/bindings.gz for more details.
##
## Tweak ncmpcpp to be vi-like.
##
## Aaron LI
## 2016-01-08
##
def_key "j"
scroll_down
def_key "k"
scroll_up
def_key "ctrl_j"
move_selected_items_down
def_key "ctrl_k"
move_selected_items_up
def_key "h"
previous_column
def_key "h"
master_screen
def_key "l"
next_column
def_key "l"
slave_screen
def_key "g"
move_home
def_key "G"
move_end
def_key "n"
next_found_item
def_key "N"
previous_found_item
def_key "I"
jump_to_browser
def_key "d"
delete_playlist_items
def_key "'"
jump_to_playing_song
def_key "space"
pause
def_key ","
previous
def_key "."
next
def_key ";"
show_lyrics
def_key "o"
show_clock
def_key "-"
volume_down
def_key "="
volume_up
|