1# Blank lines and lines beginning with '#' are ignored
2# Lines of form 'word = whatever' are bindings lines
3#     An event to bind must be a valid Tk event... see Tk 'bind' manpage
4#     Multiple, space-separated bindings may be listed for the same function
5#         but only the first will be displayed in the corresponding menu item
6#     If a binding is to be displayed differently in help, follow the
7#         binding with the display version in parentheses...   like this:
8#         colon->(:)   Right paren. is expressed as parenright->())
9#         A key you don't want to show up in help would have empty parentheses
10#         e.g.:  underscore->()
11#     There can be no spaces in the help string
12#     ALT and CMD will be substituted with OS appropriate Alt and Control keys
13#     PGUP/PGDN will be substituted with OS appropriate Page Up/Down keys
14
15back = Left
16forward = Right
17up_string = Up
18down_string = Down
19up_score = PGUP->(Page_Up)
20down_score = PGDN->(Page_Down)
21home = Home
22end = End
23
24inc_base = plus->(+) equal->()
25dec_base = minus->(-) underscore->()
26
27new = CMD-n
28open = CMD-o
29save = CMD-s
30export = CMD-e
31print = CMD-p
32close = CMD-w
33quit_safe = CMD-q Escape->(Esc)
34exit = CMD-backslash->(CMD-\)
35redraw = CMD-l
36help = question->(?) CMD-h
37
38mode = Key-Tab->(Tab)
39lyrics_mode = CMD-Key-Tab->(CMD-Tab)
40mark = CMD-m
41select_all = CMD-a
42copy = CMD-c
43cut = CMD-x
44paste = CMD-v
45undo = CMD-u
46redo = CMD-r
47del_note = Delete
48del_pos = Shift-Delete
49backspace = BackSpace
50
51tuning = semicolon->(;) colon->()
52blanktab_before = Insert
53blanktab_after = space
54whitespace_after = Shift-space
55whitespace_to_endline = Return
56bar = bar->(|) backslash->()
57repeat = ALT-semicolon->(ALT-;) ALT-colon->()
58
59mod:0 = ALT-minus->(ALT--)
60mod:1 = ALT-h
61mod:2 = ALT-p
62mod:3 = ALT-Key-6->(ALT-6)
63mod:4 = ALT-quoteleft->(ALT-`)
64mod:5 = ALT-slash->(ALT-/)
65mod:6 = ALT-backslash->(ALT-\)
66mod:7 = ALT-s
67mod:8 = ALT-b
68mod:9 = ALT-r
69mod:10 = ALT-t
70mod:20 = ALT-x
71
72
73#note:(standard tuning).(basefret+ [o=open])
74note:E.o = exclam->(!)
75note:A.o = at->(@)
76note:D.o = numbersign->(#)
77note:G.o = dollar->($)
78note:B.o = percent->(%)
79note:e.o = asciicircum->(^)
80note:a.o = ampersand->(&)
81
82note:E.0 = Key-1->(1)
83note:A.0 = Key-2->(2)
84note:D.0 = Key-3->(3)
85note:G.0 = Key-4->(4)
86note:B.0 = Key-5->(5)
87note:e.0 = Key-6->(6)
88note:a.0 = Key-7->(7)
89
90note:E.1 = q
91note:A.1 = w
92note:D.1 = e
93note:G.1 = r
94note:B.1 = t
95note:e.1 = y
96note:a.1 = u
97
98note:E.2 = a
99note:A.2 = s
100note:D.2 = d
101note:G.2 = f
102note:B.2 = g
103note:e.2 = h
104note:a.2 = j
105
106note:E.3 = z
107note:A.3 = x
108note:D.3 = c
109note:G.3 = v
110note:B.3 = b
111note:e.3 = n
112note:a.3 = m
113
114# lyrics mode stuff
115lyr_left = Left
116lyr_right = Right
117lyr_up = Up
118lyr_down = Down
119lyr_upsection = PGUP->(Page_Up)
120lyr_dnsection = PGDN->(Page_Down)
121lyr_home = Home
122lyr_end = End
123lyr_delete = Delete
124lyr_backspace = BackSpace
125lyr_enter = Return
126