Klimi's new dotfiles with stow.
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.

262 lines
6.8 KiB

4 years ago
  1. ;;; helm-core-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 "helm" "helm.el" (0 0 0 0))
  7. ;;; Generated autoloads from helm.el
  8. (autoload 'helm-define-multi-key "helm" "\
  9. In KEYMAP, define key sequence KEY for function list FUNCTIONS.
  10. Each function runs sequentially for each KEY press.
  11. If DELAY is specified, switch back to initial function of FUNCTIONS list
  12. after DELAY seconds.
  13. The functions in FUNCTIONS list take no args.
  14. e.g
  15. (defun foo ()
  16. (interactive)
  17. (message \"Run foo\"))
  18. (defun bar ()
  19. (interactive)
  20. (message \"Run bar\"))
  21. (defun baz ()
  22. (interactive)
  23. (message \"Run baz\"))
  24. \(helm-define-multi-key global-map (kbd \"<f5> q\") '(foo bar baz) 2)
  25. Each time \"<f5> q\" is pressed, the next function is executed. Waiting
  26. more than 2 seconds between key presses switches back to executing the first
  27. function on the next hit.
  28. \(fn KEYMAP KEY FUNCTIONS &optional DELAY)" nil nil)
  29. (autoload 'helm-multi-key-defun "helm" "\
  30. Define NAME as a multi-key command running FUNS.
  31. After DELAY seconds, the FUNS list is reinitialized.
  32. See `helm-define-multi-key'.
  33. \(fn NAME DOCSTRING FUNS &optional DELAY)" nil t)
  34. (function-put 'helm-multi-key-defun 'lisp-indent-function '2)
  35. (autoload 'helm-define-key-with-subkeys "helm" "\
  36. Defines in MAP a KEY and SUBKEY to COMMAND.
  37. This allows typing KEY to call COMMAND the first time and
  38. type only SUBKEY on subsequent calls.
  39. Arg MAP is the keymap to use, SUBKEY is the initial short key-binding to
  40. call COMMAND.
  41. Arg OTHER-SUBKEYS is an alist specifying other short key-bindings
  42. to use once started e.g:
  43. (helm-define-key-with-subkeys global-map
  44. (kbd \"C-x v n\") ?n 'git-gutter:next-hunk
  45. '((?p . git-gutter:previous-hunk)))
  46. In this example, `C-x v n' will run `git-gutter:next-hunk'
  47. subsequent \"n\"'s run this command again
  48. and subsequent \"p\"'s run `git-gutter:previous-hunk'.
  49. If specified PROMPT can be displayed in minibuffer to
  50. describe SUBKEY and OTHER-SUBKEYS.
  51. Arg EXIT-FN specifies a function to run on exit.
  52. For any other keys pressed, run their assigned command as defined
  53. in MAP and then exit the loop running EXIT-FN, if specified.
  54. NOTE: SUBKEY and OTHER-SUBKEYS bindings support only char syntax and
  55. vectors, so don't use strings to define them.
  56. \(fn MAP KEY SUBKEY COMMAND &optional OTHER-SUBKEYS PROMPT EXIT-FN)" nil nil)
  57. (function-put 'helm-define-key-with-subkeys 'lisp-indent-function '1)
  58. (autoload 'helm-debug-open-last-log "helm" "\
  59. Open helm log file or buffer of last helm session.
  60. \(fn)" t nil)
  61. (autoload 'helm "helm" "\
  62. Main function to execute helm sources.
  63. PLIST is a list like
  64. \(:key1 val1 :key2 val2 ...)
  65. or
  66. \(&optional sources input prompt resume preselect
  67. buffer keymap default history allow-nest).
  68. ** Keywords
  69. Keywords supported:
  70. - :sources
  71. - :input
  72. - :prompt
  73. - :resume
  74. - :preselect
  75. - :buffer
  76. - :keymap
  77. - :default
  78. - :history
  79. - :allow-nest
  80. Extra LOCAL-VARS keywords are supported, see the \"** Other
  81. keywords\" section below.
  82. Basic keywords are the following:
  83. *** :sources
  84. One of the following:
  85. - List of sources
  86. - Symbol whose value is a list of sources
  87. - Alist representing a Helm source.
  88. - In this case the source has no name and is referenced in
  89. `helm-sources' as a whole alist.
  90. *** :input
  91. Initial input of minibuffer (temporary value of `helm-pattern')
  92. *** :prompt
  93. Minibuffer prompt. Default value is `helm--prompt'.
  94. *** :resume
  95. If t, allow resumption of the previous session of this Helm
  96. command, skipping initialization.
  97. If 'noresume, this instance of `helm' cannot be resumed.
  98. *** :preselect
  99. Initially selected candidate (string or regexp).
  100. *** :buffer
  101. Buffer name for this Helm session. `helm-buffer' will take this value.
  102. *** :keymap
  103. \[Obsolete]
  104. Keymap used at the start of this Helm session.
  105. It is overridden by keymaps specified in sources, and is kept
  106. only for backward compatibility.
  107. Keymaps should be specified in sources using the :keymap slot
  108. instead. See `helm-source'.
  109. This keymap is not restored by `helm-resume'.
  110. *** :default
  111. Default value inserted into the minibuffer with
  112. \\<minibuffer-local-map>\\[next-history-element].
  113. It can be a string or a list of strings, in this case
  114. \\<minibuffer-local-map>\\[next-history-element] cycles through
  115. the list items, starting with the first.
  116. If nil, `thing-at-point' is used.
  117. If `helm--maybe-use-default-as-input' is non-`nil', display is
  118. updated using this value, unless :input is specified, in which
  119. case that value is used instead.
  120. *** :history
  121. Minibuffer input, by default, is pushed to `minibuffer-history'.
  122. When an argument HISTORY is provided, input is pushed to
  123. HISTORY. HISTORY should be a valid symbol.
  124. *** :allow-nest
  125. Allow running this Helm command in a running Helm session.
  126. ** Other keywords
  127. Other keywords are interpreted as local variables of this Helm
  128. session. The `helm-' prefix can be omitted. For example,
  129. \(helm :sources 'helm-source-buffers-list
  130. :buffer \"*helm buffers*\"
  131. :candidate-number-limit 10)
  132. starts a Helm session with the variable
  133. `helm-candidate-number-limit' set to 10.
  134. ** Backward compatibility
  135. For backward compatibility, positional parameters are
  136. supported:
  137. \(helm sources input prompt resume preselect
  138. buffer keymap default history allow-nest)
  139. However, the use of non-keyword args is deprecated.
  140. \(fn &key SOURCES INPUT PROMPT RESUME PRESELECT BUFFER KEYMAP DEFAULT HISTORY ALLOW-NEST OTHER-LOCAL-VARS)" nil nil)
  141. (autoload 'helm-cycle-resume "helm" "\
  142. Cycle in `helm-buffers' list and resume when waiting more than 1.2s.
  143. \(fn)" t nil)
  144. (autoload 'helm-other-buffer "helm" "\
  145. Simplified `helm' interface with other `helm-buffer'.
  146. Call `helm' only with ANY-SOURCES and ANY-BUFFER as args.
  147. \(fn ANY-SOURCES ANY-BUFFER)" nil nil)
  148. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm" '("helm-" "with-helm-")))
  149. ;;;***
  150. ;;;### (autoloads nil "helm-lib" "helm-lib.el" (0 0 0 0))
  151. ;;; Generated autoloads from helm-lib.el
  152. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-lib" '("helm-" "with-helm-")))
  153. ;;;***
  154. ;;;### (autoloads nil "helm-multi-match" "helm-multi-match.el" (0
  155. ;;;;;; 0 0 0))
  156. ;;; Generated autoloads from helm-multi-match.el
  157. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-multi-match" '("helm-m")))
  158. ;;;***
  159. ;;;### (autoloads nil "helm-source" "helm-source.el" (0 0 0 0))
  160. ;;; Generated autoloads from helm-source.el
  161. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "helm-source" '("helm-")))
  162. ;;;***
  163. ;;;### (autoloads nil nil ("helm-core-pkg.el") (0 0 0 0))
  164. ;;;***
  165. ;; Local Variables:
  166. ;; version-control: never
  167. ;; no-byte-compile: t
  168. ;; no-update-autoloads: t
  169. ;; coding: utf-8
  170. ;; End:
  171. ;;; helm-core-autoloads.el ends here