Klimi's new dotfiles with stow.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

99 行
3.0 KiB

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