keysrc 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. # keysrc
  2. # Sample dillo key bindings file.
  3. #
  4. # The format is: "key = action" or "<modifier>key = action".
  5. # Lines that begin with a '#' are comments.
  6. # The commented-out bindings below show the defaults built into Dillo.
  7. #
  8. # Modifiers recognized: "Shift", "Ctrl", "Alt", "Meta".
  9. # (OS X: Use "Meta" for Command)
  10. #
  11. # Key names recognized: "Backspace", "Delete", "Down", "End", "Esc",
  12. # "F1" through "F12", "Home", "Insert", "Left", "PageDown", "PageUp",
  13. # "Print", "Return", "Right", "Space", "Tab", "Up".
  14. #
  15. # Multimedia keys: "Back", "Favorites", "Forward", "HomePage", "Mail",
  16. # "MediaNext", "MediaPlay", "MediaPrev", "MediaStop", "Refresh", "Search",
  17. # "Sleep", "Stop", "VolumeDown", "VolumeMute", VolumeUp".
  18. #
  19. # If Dillo is running under X11, keys whose names are not recognized can
  20. # be specified using their keysym value in hexadecimal. Use xev to get
  21. # the keysym. Example rule: "0x1008ff27 = forward".
  22. #
  23. # The action "nop" (no operation) can be used to remove a binding.
  24. # "open" lets you browse your local files for one to open.
  25. #<ctrl>o = open
  26. # "new-window" opens a new browser window.
  27. #<ctrl>n = new-window
  28. # "new-tab" opens a new tab in the current browser window.
  29. #<ctrl>t = new-tab
  30. # "close-tab" closes the current tab.
  31. # Note that this closes the browser window if there is only one tab.
  32. #<ctrl>w = close-tab
  33. # "close-all" closes all tabs/windows and exits.
  34. #<ctrl>q = close-all
  35. # "left-tab" and "right-tab" switch to the left/right of the current tab.
  36. # <ctrl><shift>tab = left-tab
  37. # <ctrl>PageUp = left-tab
  38. # <ctrl>tab = right-tab
  39. # <ctrl>PageDown = right-tab
  40. # "back" and "forward" move back/forward through the browser history.
  41. #backspace = back
  42. #<shift>backspace = forward
  43. #, = back
  44. #. = forward
  45. # "reload" the current page.
  46. #<ctrl>r = reload
  47. # "home" goes to the homepage that you set in your dillorc.
  48. #<ctrl>h = home
  49. # "find" lets you search for a text string on the current page.
  50. #<ctrl>f = find
  51. # "hide-panels" hides the findbar if present, control panels if not.
  52. #esc = hide-panels
  53. # "websearch" lets you send a text string to the search engine that you
  54. # set in your dillorc.
  55. #<ctrl>s = websearch
  56. # go to your "bookmarks".
  57. #<ctrl>b = bookmarks
  58. # "file-menu" pops up the file menu.
  59. #<alt>f = file-menu
  60. # "view-source" displays the page source.
  61. #<ctrl>u = view-source
  62. # "goto" goes to the location bar at the top of the window.
  63. #<ctrl>l = goto
  64. # "stop" loading the page.
  65. #(stop has no default binding)
  66. # "save" the current page.
  67. #(save has no default binding)
  68. #--------------------------------------------------------------------
  69. # MOTION COMMANDS
  70. #--------------------------------------------------------------------
  71. #pageup = screen-up
  72. #b = screen-up
  73. #pagedown = screen-down
  74. #space = screen-down
  75. #(screen-left has no default binding)
  76. #(screen-right has no default binding)
  77. #up = line-up
  78. #down = line-down
  79. #left = left
  80. #right = right
  81. #home = top
  82. #end = bottom