Personal emacs config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

84 lines
2.7 KiB

  1. ;;; bind-key-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. (add-to-list 'load-path (directory-file-name
  5. (or (file-name-directory #$) (car load-path))))
  6. ;;;### (autoloads nil "bind-key" "bind-key.el" (0 0 0 0))
  7. ;;; Generated autoloads from bind-key.el
  8. (autoload 'bind-key "bind-key" "\
  9. Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed).
  10. KEY-NAME may be a vector, in which case it is passed straight to
  11. `define-key'. Or it may be a string to be interpreted as
  12. spelled-out keystrokes, e.g., \"C-c C-z\". See documentation of
  13. `edmacro-mode' for details.
  14. COMMAND must be an interactive function or lambda form.
  15. KEYMAP, if present, should be a keymap variable or symbol.
  16. For example:
  17. (bind-key \"M-h\" #'some-interactive-function my-mode-map)
  18. (bind-key \"M-h\" #'some-interactive-function 'my-mode-map)
  19. If PREDICATE is non-nil, it is a form evaluated to determine when
  20. a key should be bound. It must return non-nil in such cases.
  21. Emacs can evaluate this form at any time that it does redisplay
  22. or operates on menu data structures, so you should write it so it
  23. can safely be called at any time.
  24. \(fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t)
  25. (autoload 'unbind-key "bind-key" "\
  26. Unbind the given KEY-NAME, within the KEYMAP (if specified).
  27. See `bind-key' for more details.
  28. \(fn KEY-NAME &optional KEYMAP)" nil t)
  29. (autoload 'bind-key* "bind-key" "\
  30. Similar to `bind-key', but overrides any mode-specific bindings.
  31. \(fn KEY-NAME COMMAND &optional PREDICATE)" nil t)
  32. (autoload 'bind-keys "bind-key" "\
  33. Bind multiple keys at once.
  34. Accepts keyword arguments:
  35. :map MAP - a keymap into which the keybindings should be
  36. added
  37. :prefix KEY - prefix key for these bindings
  38. :prefix-map MAP - name of the prefix map that should be created
  39. for these bindings
  40. :prefix-docstring STR - docstring for the prefix-map variable
  41. :menu-name NAME - optional menu string for prefix map
  42. :filter FORM - optional form to determine when bindings apply
  43. The rest of the arguments are conses of keybinding string and a
  44. function symbol (unquoted).
  45. \(fn &rest ARGS)" nil t)
  46. (autoload 'bind-keys* "bind-key" "\
  47. \(fn &rest ARGS)" nil t)
  48. (autoload 'describe-personal-keybindings "bind-key" "\
  49. Display all the personal keybindings defined by `bind-key'." t nil)
  50. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bind-key" '("bind-key" "compare-keybindings" "get-binding-description" "override-global-m" "personal-keybindings")))
  51. ;;;***
  52. ;; Local Variables:
  53. ;; version-control: never
  54. ;; no-byte-compile: t
  55. ;; no-update-autoloads: t
  56. ;; coding: utf-8
  57. ;; End:
  58. ;;; bind-key-autoloads.el ends here