My attempt to optimize my emacs load time <1 second
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.

93 lines
2.9 KiB

  1. ;;; hydra-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "hydra" "hydra.el" (0 0 0 0))
  5. ;;; Generated autoloads from hydra.el
  6. (autoload 'defhydra "hydra" "\
  7. Create a Hydra - a family of functions with prefix NAME.
  8. NAME should be a symbol, it will be the prefix of all functions
  9. defined here.
  10. BODY has the format:
  11. (BODY-MAP BODY-KEY &rest BODY-PLIST)
  12. DOCSTRING will be displayed in the echo area to identify the
  13. Hydra. When DOCSTRING starts with a newline, special Ruby-style
  14. substitution will be performed by `hydra--format'.
  15. Functions are created on basis of HEADS, each of which has the
  16. format:
  17. (KEY CMD &optional HINT &rest PLIST)
  18. BODY-MAP is a keymap; `global-map' is used quite often. Each
  19. function generated from HEADS will be bound in BODY-MAP to
  20. BODY-KEY + KEY (both are strings passed to `kbd'), and will set
  21. the transient map so that all following heads can be called
  22. though KEY only. BODY-KEY can be an empty string.
  23. CMD is a callable expression: either an interactive function
  24. name, or an interactive lambda, or a single sexp (it will be
  25. wrapped in an interactive lambda).
  26. HINT is a short string that identifies its head. It will be
  27. printed beside KEY in the echo erea if `hydra-is-helpful' is not
  28. nil. If you don't even want the KEY to be printed, set HINT
  29. explicitly to nil.
  30. The heads inherit their PLIST from BODY-PLIST and are allowed to
  31. override some keys. The keys recognized are :exit, :bind, and :column.
  32. :exit can be:
  33. - nil (default): this head will continue the Hydra state.
  34. - t: this head will stop the Hydra state.
  35. :bind can be:
  36. - nil: this head will not be bound in BODY-MAP.
  37. - a lambda taking KEY and CMD used to bind a head.
  38. :column is a string that sets the column for all subsequent heads.
  39. It is possible to omit both BODY-MAP and BODY-KEY if you don't
  40. want to bind anything. In that case, typically you will bind the
  41. generated NAME/body command. This command is also the return
  42. result of `defhydra'.
  43. \(fn NAME BODY &optional DOCSTRING &rest HEADS)" nil t)
  44. (function-put 'defhydra 'lisp-indent-function 'defun)
  45. (function-put 'defhydra 'doc-string-elt '3)
  46. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hydra" '("hydra-" "defhydra")))
  47. ;;;***
  48. ;;;### (autoloads nil "hydra-examples" "hydra-examples.el" (0 0 0
  49. ;;;;;; 0))
  50. ;;; Generated autoloads from hydra-examples.el
  51. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hydra-examples" '("hydra-" "org-agenda-cts" "whitespace-mode")))
  52. ;;;***
  53. ;;;### (autoloads nil "hydra-ox" "hydra-ox.el" (0 0 0 0))
  54. ;;; Generated autoloads from hydra-ox.el
  55. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "hydra-ox" '("hydra-ox")))
  56. ;;;***
  57. (provide 'hydra-autoloads)
  58. ;; Local Variables:
  59. ;; version-control: never
  60. ;; no-byte-compile: t
  61. ;; no-update-autoloads: t
  62. ;; coding: utf-8
  63. ;; End:
  64. ;;; hydra-autoloads.el ends here