Klimi's new dotfiles with stow.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

84 строки
2.7 KiB

4 лет назад
  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 and not a quoted symbol.
  16. For example:
  17. (bind-key \"M-h\" #'some-interactive-function my-mode-map)
  18. If PREDICATE is non-nil, it is a form evaluated to determine when
  19. a key should be bound. It must return non-nil in such cases.
  20. Emacs can evaluate this form at any time that it does redisplay
  21. or operates on menu data structures, so you should write it so it
  22. can safely be called at any time.
  23. \(fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t)
  24. (autoload 'unbind-key "bind-key" "\
  25. Unbind the given KEY-NAME, within the KEYMAP (if specified).
  26. See `bind-key' for more details.
  27. \(fn KEY-NAME &optional KEYMAP)" nil t)
  28. (autoload 'bind-key* "bind-key" "\
  29. Similar to `bind-key', but overrides any mode-specific bindings.
  30. \(fn KEY-NAME COMMAND &optional PREDICATE)" nil t)
  31. (autoload 'bind-keys "bind-key" "\
  32. Bind multiple keys at once.
  33. Accepts keyword arguments:
  34. :map MAP - a keymap into which the keybindings should be
  35. added
  36. :prefix KEY - prefix key for these bindings
  37. :prefix-map MAP - name of the prefix map that should be created
  38. for these bindings
  39. :prefix-docstring STR - docstring for the prefix-map variable
  40. :menu-name NAME - optional menu string for prefix map
  41. :filter FORM - optional form to determine when bindings apply
  42. The rest of the arguments are conses of keybinding string and a
  43. function symbol (unquoted).
  44. \(fn &rest ARGS)" nil t)
  45. (autoload 'bind-keys* "bind-key" "\
  46. \(fn &rest ARGS)" nil t)
  47. (autoload 'describe-personal-keybindings "bind-key" "\
  48. Display all the personal keybindings defined by `bind-key'.
  49. \(fn)" t nil)
  50. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "bind-key" '("compare-keybindings" "get-binding-description" "bind-key" "personal-keybindings" "override-global-m")))
  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