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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
/*
(c) 2009 by Leon Winter
(c) 2009-2011 by Hannes Schueller
(c) 2009-2010 by Matto Fransen
(c) 2010-2011 by Hans-Peter Deifel
(c) 2010-2011 by Thomas Adam
(c) 2011 by Albert Kim
see LICENSE file
*/
#ifndef _KEYMAP
#define _KEYMAP
/* key bindings for normal mode
Note: GDK_VoidSymbol is a wildcard so it matches on every modkey
*/
Key keys[] = {
/* modmask, modkey, key, function, argument */
{ 0, GDK_q, GDK_1, quickmark, { .s = "1" } },
{ 0, GDK_q, GDK_2, quickmark, { .s = "2" } },
{ 0, GDK_q, GDK_3, quickmark, { .s = "3" } },
{ 0, GDK_q, GDK_4, quickmark, { .s = "4" } },
{ 0, GDK_q, GDK_5, quickmark, { .s = "5" } },
{ 0, GDK_q, GDK_6, quickmark, { .s = "6" } },
{ 0, GDK_q, GDK_7, quickmark, { .s = "7" } },
{ 0, GDK_q, GDK_8, quickmark, { .s = "8" } },
{ 0, GDK_q, GDK_9, quickmark, { .s = "9" } },
{ 0, GDK_Q, GDK_1, quickmark, { .s = "1", .i = 1 } },
{ 0, GDK_Q, GDK_2, quickmark, { .s = "2", .i = 1 } },
{ 0, GDK_Q, GDK_3, quickmark, { .s = "3", .i = 1 } },
{ 0, GDK_Q, GDK_4, quickmark, { .s = "4", .i = 1 } },
{ 0, GDK_Q, GDK_5, quickmark, { .s = "5", .i = 1 } },
{ 0, GDK_Q, GDK_6, quickmark, { .s = "6", .i = 1 } },
{ 0, GDK_Q, GDK_7, quickmark, { .s = "7", .i = 1 } },
{ 0, GDK_Q, GDK_8, quickmark, { .s = "8", .i = 1 } },
{ 0, GDK_Q, GDK_9, quickmark, { .s = "9", .i = 1 } },
{ 0, 0, GDK_0, scroll, {ScrollJumpTo | DirectionLeft} },
{ 0, 0, GDK_dollar, scroll, {ScrollJumpTo | DirectionRight} },
{ 0, GDK_g, GDK_g, scroll, {ScrollJumpTo | DirectionTop} },
{ 0, 0, GDK_G, scroll, {ScrollJumpTo | DirectionBottom} },
{ 0, 0, GDK_h, scroll, {ScrollMove | DirectionLeft | UnitLine} },
{ 0, 0, GDK_j, scroll, {ScrollMove | DirectionBottom | UnitLine} },
{ 0, 0, GDK_k, scroll, {ScrollMove | DirectionTop | UnitLine} },
{ 0, 0, GDK_l, scroll, {ScrollMove | DirectionRight | UnitLine} },
{ 0, 0, GDK_space, scroll, {ScrollMove | DirectionBottom | UnitPage} },
{ GDK_SHIFT_MASK, 0, GDK_space, scroll, {ScrollMove | DirectionTop | UnitPage} },
{ GDK_CONTROL_MASK, 0, GDK_b, scroll, {ScrollMove | DirectionTop | UnitPage} },
{ GDK_CONTROL_MASK, 0, GDK_f, scroll, {ScrollMove | DirectionBottom | UnitPage} },
{ GDK_CONTROL_MASK, 0, GDK_d, scroll, {ScrollMove | DirectionBottom | UnitBuffer} },
{ GDK_CONTROL_MASK, 0, GDK_u, scroll, {ScrollMove | DirectionTop | UnitBuffer} },
{ GDK_CONTROL_MASK, 0, GDK_e, scroll, {ScrollMove | DirectionBottom | UnitLine} },
{ GDK_CONTROL_MASK, 0, GDK_y, scroll, {ScrollMove | DirectionTop | UnitLine} },
{ 0, GDK_g, GDK_t, fake_key_event, { .s = "l", .i = ShiftMask + ControlMask } },
{ 0, GDK_g, GDK_T, fake_key_event, { .s = "h", .i = ShiftMask + ControlMask } },
{ 0, GDK_g, GDK_1, fake_key_event, { .s = "1", .i = ControlMask } },
{ 0, GDK_g, GDK_2, fake_key_event, { .s = "2", .i = ControlMask } },
{ 0, GDK_g, GDK_3, fake_key_event, { .s = "3", .i = ControlMask } },
{ 0, GDK_g, GDK_4, fake_key_event, { .s = "4", .i = ControlMask } },
{ 0, GDK_g, GDK_5, fake_key_event, { .s = "5", .i = ControlMask } },
{ 0, GDK_g, GDK_6, fake_key_event, { .s = "6", .i = ControlMask } },
{ 0, GDK_g, GDK_7, fake_key_event, { .s = "7", .i = ControlMask } },
{ 0, GDK_g, GDK_8, fake_key_event, { .s = "8", .i = ControlMask } },
{ 0, GDK_g, GDK_9, fake_key_event, { .s = "9", .i = ControlMask } },
{ 0, GDK_g, GDK_0, fake_key_event, { .s = "0", .i = ControlMask } },
{ GDK_CONTROL_MASK, 0, GDK_i, navigate, {NavigationBack} },
{ GDK_CONTROL_MASK, 0, GDK_o, navigate, {NavigationForward} },
{ 0, 0, GDK_b, navigate, {NavigationBack} },
{ 0, 0, GDK_H, navigate, {NavigationBack} },
{ 0, 0, GDK_m, navigate, {NavigationForward} },
{ 0, 0, GDK_L, navigate, {NavigationForward} },
{ 0, 0, GDK_r, navigate, {NavigationReload} },
{ 0, 0, GDK_R, navigate, {NavigationForceReload} },
{ GDK_CONTROL_MASK, 0, GDK_s, navigate, {NavigationCancel} },
{ 0, 0, GDK_plus, zoom, {ZoomIn | ZoomText} },
{ 0, 0, GDK_minus, zoom, {ZoomOut | ZoomText} },
{ 0, 0, GDK_KP_Add, zoom, {ZoomIn | ZoomText} },
{ 0, 0, GDK_KP_Subtract,zoom, {ZoomOut | ZoomText} },
{ 0, GDK_z, GDK_i, zoom, {ZoomIn | ZoomText} },
{ 0, GDK_z, GDK_o, zoom, {ZoomOut | ZoomText} },
{ 0, GDK_z, GDK_z, zoom, {ZoomReset | ZoomText} },
{ 0, GDK_z, GDK_I, zoom, {ZoomIn | ZoomFullContent} },
{ 0, GDK_z, GDK_O, zoom, {ZoomOut | ZoomFullContent} },
{ 0, GDK_z, GDK_Z, zoom, {ZoomReset | ZoomFullContent} },
{ 0, 0, GDK_y, yank, {SourceURL | ClipboardPrimary | ClipboardGTK} },
{ 0, 0, GDK_Y, yank, {SourceSelection| ClipboardPrimary | ClipboardGTK} },
{ 0, GDK_g, GDK_u, descend, {NthSubdir} },
{ 0, GDK_g, GDK_U, descend, {Rootdir} },
{ 0, GDK_g, GDK_h, open_arg, {TargetCurrent, startpage} },
{ 0, GDK_g, GDK_H, open_arg, {TargetNew, startpage} },
{ 0, 0, GDK_p, paste, {TargetCurrent | ClipboardPrimary | ClipboardGTK} },
{ 0, 0, GDK_P, paste, {TargetNew | ClipboardPrimary | ClipboardGTK} },
{ GDK_CONTROL_MASK, 0, GDK_a, number, {Increment} },
{ GDK_CONTROL_MASK, 0, GDK_x, number, {Decrement} },
{ 0, 0, GDK_n, search, {DirectionNext | CaseInsensitive | Wrapping} },
{ 0, 0, GDK_N, search, {DirectionPrev | CaseInsensitive | Wrapping} },
{ 0, 0, GDK_colon, input, {.s = ":" } },
{ 0, 0, GDK_o, input, {.s = ":open "} },
{ 0, 0, GDK_O, input, {.s = ":open ", .i = InsertCurrentURL} },
{ 0, 0, GDK_t, input, {.s = ":tabopen "} },
{ 0, 0, GDK_T, input, {.s = ":tabopen ", .i = InsertCurrentURL} },
{ 0, 0, GDK_slash, input, {.s = "/"} },
{ 0, 0, GDK_KP_Divide, input, {.s = "/"} },
{ 0, 0, GDK_question, input, {.s = "?"} },
{ 0, 0, GDK_period, input, {.s = "."} },
{ 0, 0, GDK_comma, input, {.s = ","} },
{ 0, GDK_semicolon, GDK_i, input, {.s = ";i"} },
{ 0, GDK_semicolon, GDK_l, input, {.s = ";l"} },
{ 0, GDK_semicolon, GDK_s, input, {.s = ";s"} },
{ 0, GDK_semicolon, GDK_y, input, {.s = ";y"} },
{ 0, GDK_semicolon, GDK_o, input, {.s = ";o"} },
{ 0, GDK_semicolon, GDK_t, input, {.s = ";t"} },
{ 0, GDK_semicolon, GDK_w, input, {.s = ";w"} },
{ 0, GDK_semicolon, GDK_I, input, {.s = ";I"} },
{ 0, GDK_semicolon, GDK_O, input, {.s = ";O"} },
{ 0, GDK_semicolon, GDK_T, input, {.s = ";T"} },
{ 0, GDK_semicolon, GDK_W, input, {.s = ";W"} },
/* this needs to be a binding using CTRL for obvious reasons */
{ GDK_CONTROL_MASK, 0, GDK_t, open_editor,{} },
{ 0, GDK_VoidSymbol, GDK_Escape, set, {ModeNormal} },
{ GDK_CONTROL_MASK, GDK_VoidSymbol, GDK_bracketleft,set, {ModeNormal} },
{ GDK_CONTROL_MASK, 0, GDK_p, set, {ModePassThrough} },
{ GDK_CONTROL_MASK, 0, GDK_v, set, {ModeSendKey} },
{ 0, 0, GDK_f, input, {.s = "."} },
{ 0, 0, GDK_F, input, {.s = ","} },
{ 0, GDK_g, GDK_i, focus_input,{} },
{ 0, 0, GDK_u, revive, {} },
/* custom commands */
{ 0, GDK_g, GDK_b, input, {.s = ":tabopen http://bitbucket.jasonwryan.com" } },
{ 0, GDK_g, GDK_e, input, {.s = ":tabopen https://wiki.archlinux.org/index.php/Forum_Etiquette" } },
{ 0, GDK_g, GDK_f, input, {.s = ":tabopen http://flickr.jasonwryan.com" } },
{ 0, GDK_g, GDK_j, input, {.s = ":tabopen http://jasonwryan.com" } },
{ 0, GDK_g, GDK_p, input, {.s = ":tabopen http://127.0.0.1:4000" } },
{ 0, GDK_g, GDK_r, input, {.s = ":tabopen https://www.inoreader.com/" } },
{ 0, GDK_g, GDK_s, input, {.s = ":tabopen https://unix.stackexchange.com" } },
{ 0, 0, GDK_x, quit, {0} },
/* leave this last line as last */
{ 0, 0, 0, 0, {0} },
};
#endif
|