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
|
# keysrc
# Sample dillo key bindings file.
#
# The format is: "key = action" or "<modifier>key = action".
# Lines that begin with a '#' are comments.
# The commented-out bindings below show the defaults built into Dillo.
#
# Modifiers recognized: "Shift", "Ctrl", "Alt", "Meta".
# (OS X: Use "Meta" for Command)
#
# Key names recognized: "Backspace", "Delete", "Down", "End", "Esc",
# "F1" through "F12", "Home", "Insert", "Left", "Menu", "PageDown", "PageUp",
# "Print", "Return", "Right", "Space", "Tab", "Up".
#
# Multimedia keys: "Back", "Favorites", "Forward", "HomePage", "Mail",
# "MediaNext", "MediaPlay", "MediaPrev", "MediaStop", "Refresh", "Search",
# "Sleep", "Stop", "VolumeDown", "VolumeMute", VolumeUp".
#
# If Dillo is running under X11, keys whose names are not recognized can
# be specified using their keysym value in hexadecimal. Use xev to get
# the keysym. Example rule: "0x1008ff27 = forward".
#
# The action "nop" (no operation) can be used to remove a binding.
# "open" lets you browse your local files for one to open.
#<ctrl>o = open
# "new-window" opens a new browser window.
#<ctrl>n = new-window
# "new-tab" opens a new tab in the current browser window.
#<ctrl>t = new-tab
# "close-tab" closes the current tab.
# Note that this closes the browser window if there is only one tab.
#<ctrl>w = close-tab
# "close-all" closes all tabs/windows and exits.
#<ctrl>q = close-all
# "left-tab" and "right-tab" switch to the left/right of the current tab.
# <ctrl><shift>tab = left-tab
# <ctrl>PageUp = left-tab
# <ctrl>tab = right-tab
# <ctrl>PageDown = right-tab
# "back" and "forward" move back/forward through the browser history.
#backspace = back
#<shift>backspace = forward
#, = back
#. = forward
# "reload" the current page.
#<ctrl>r = reload
# "home" goes to the homepage that you set in your dillorc.
#<ctrl>h = home
# "find" lets you search for a text string on the current page.
#<ctrl>f = find
# "hide-panels" hides the findbar if present, control panels if not.
#esc = hide-panels
# "websearch" lets you send a text string to the search engine that you
# set in your dillorc.
#<ctrl>s = websearch
# go to your "bookmarks".
#<ctrl>b = bookmarks
# "file-menu" pops up the file menu.
#<alt>f = file-menu
# "view-source" displays the page source.
#<ctrl>u = view-source
# "goto" goes to the location bar at the top of the window.
#<ctrl>l = goto
# "copy" copies the selected text into the clipboard.
#<ctrl>c = copy
# "stop" loading the page.
#(stop has no default binding)
# "save" the current page.
#(save has no default binding)
# "zoom-in" increases the zoom by 10% (make elements bigger).
#<ctrl>+ = zoom-in
#<ctrl>= = zoom-in
# "zoom-out" decreases the zoom by 10% (make elements smaller).
#<ctrl>- = zoom-out
# "zoom-reset" resets the zoom to 100%.
#<ctrl>0 = zoom-reset
# "focus-tab<N>" focus the N-th tab (starting in 1).
#<alt>1 = focus-tab1
#<alt>2 = focus-tab2
#<alt>3 = focus-tab3
#<alt>4 = focus-tab4
#<alt>5 = focus-tab5
#<alt>6 = focus-tab6
#<alt>7 = focus-tab7
#<alt>8 = focus-tab8
#<alt>9 = focus-tab9
#<alt>0 = focus-tab10
#--------------------------------------------------------------------
# MOTION COMMANDS
#--------------------------------------------------------------------
#pageup = screen-up
#b = screen-up
#pagedown = screen-down
#space = screen-down
#(screen-left has no default binding)
#(screen-right has no default binding)
#up = line-up
#down = line-down
#left = left
#right = right
#home = top
#end = bottom
|