diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-01 23:40:52 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-01-01 23:40:52 +0100 |
commit | 5ea943a5e789222472e45864e119cf786498bfcd (patch) | |
tree | ea307589de0fdb202474ad4d07c0bef7fe1c53e8 /old/keysrc.html |
Import original dillo.org website into old/
Diffstat (limited to 'old/keysrc.html')
-rw-r--r-- | old/keysrc.html | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/old/keysrc.html b/old/keysrc.html new file mode 100644 index 0000000..64d527d --- /dev/null +++ b/old/keysrc.html @@ -0,0 +1,112 @@ +# 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 + +# "stop" loading the page. +#(stop has no default binding) + +# "save" the current page. +#(save has no default binding) + +#-------------------------------------------------------------------- +# 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 + |