Klimi's new dotfiles with stow.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

165 wiersze
5.1 KiB

4 lat temu
  1. ;;; ivy-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 "colir" "colir.el" (0 0 0 0))
  7. ;;; Generated autoloads from colir.el
  8. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "colir" '("colir-")))
  9. ;;;***
  10. ;;;### (autoloads nil "ivy" "ivy.el" (0 0 0 0))
  11. ;;; Generated autoloads from ivy.el
  12. (autoload 'ivy-resume "ivy" "\
  13. Resume the last completion session.
  14. \(fn)" t nil)
  15. (autoload 'ivy-read "ivy" "\
  16. Read a string in the minibuffer, with completion.
  17. PROMPT is a string, normally ending in a colon and a space.
  18. `ivy-count-format' is prepended to PROMPT during completion.
  19. COLLECTION is either a list of strings, a function, an alist, or
  20. a hash table, supplied for `minibuffer-completion-table'.
  21. PREDICATE is applied to filter out the COLLECTION immediately.
  22. This argument is for compatibility with `completing-read'.
  23. When REQUIRE-MATCH is non-nil, only members of COLLECTION can be
  24. selected.
  25. If INITIAL-INPUT is non-nil, then insert that input in the
  26. minibuffer initially.
  27. HISTORY is a name of a variable to hold the completion session
  28. history.
  29. KEYMAP is composed with `ivy-minibuffer-map'.
  30. PRESELECT, when non-nil, determines which one of the candidates
  31. matching INITIAL-INPUT to select initially. An integer stands
  32. for the position of the desired candidate in the collection,
  33. counting from zero. Otherwise, use the first occurrence of
  34. PRESELECT in the collection. Comparison is first done with
  35. `equal'. If that fails, and when applicable, match PRESELECT as
  36. a regular expression.
  37. DEF is for compatibility with `completing-read'.
  38. UPDATE-FN is called each time the candidate list is re-displayed.
  39. When SORT is non-nil, `ivy-sort-functions-alist' determines how
  40. to sort candidates before displaying them.
  41. ACTION is a function to call after selecting a candidate.
  42. It takes the candidate, which is a string, as its only argument.
  43. MULTI-ACTION, when non-nil, is called instead of ACTION when
  44. there are marked candidates. It takes the list of candidates as
  45. its only argument. When it's nil, ACTION is called on each marked
  46. candidate.
  47. UNWIND is a function of no arguments to call before exiting.
  48. RE-BUILDER is a function transforming input text into a regex
  49. pattern.
  50. MATCHER is a function which can override how candidates are
  51. filtered based on user input. It takes a regex pattern and a
  52. list of candidates, and returns the list of matching candidates.
  53. DYNAMIC-COLLECTION is a boolean specifying whether the list of
  54. candidates is updated after each input by calling COLLECTION.
  55. CALLER is a symbol to uniquely identify the caller to `ivy-read'.
  56. It is used, along with COLLECTION, to determine which
  57. customizations apply to the current completion session.
  58. \(fn PROMPT COLLECTION &key PREDICATE REQUIRE-MATCH INITIAL-INPUT HISTORY PRESELECT DEF KEYMAP UPDATE-FN SORT ACTION MULTI-ACTION UNWIND RE-BUILDER MATCHER DYNAMIC-COLLECTION CALLER)" nil nil)
  59. (autoload 'ivy-completing-read "ivy" "\
  60. Read a string in the minibuffer, with completion.
  61. This interface conforms to `completing-read' and can be used for
  62. `completing-read-function'.
  63. PROMPT is a string that normally ends in a colon and a space.
  64. COLLECTION is either a list of strings, an alist, an obarray, or a hash table.
  65. PREDICATE limits completion to a subset of COLLECTION.
  66. REQUIRE-MATCH is a boolean value. See `completing-read'.
  67. INITIAL-INPUT is a string inserted into the minibuffer initially.
  68. HISTORY is a list of previously selected inputs.
  69. DEF is the default value.
  70. INHERIT-INPUT-METHOD is currently ignored.
  71. \(fn PROMPT COLLECTION &optional PREDICATE REQUIRE-MATCH INITIAL-INPUT HISTORY DEF INHERIT-INPUT-METHOD)" nil nil)
  72. (defvar ivy-mode nil "\
  73. Non-nil if Ivy mode is enabled.
  74. See the `ivy-mode' command
  75. for a description of this minor mode.
  76. Setting this variable directly does not take effect;
  77. either customize it (see the info node `Easy Customization')
  78. or call the function `ivy-mode'.")
  79. (custom-autoload 'ivy-mode "ivy" nil)
  80. (autoload 'ivy-mode "ivy" "\
  81. Toggle Ivy mode on or off.
  82. Turn Ivy mode on if ARG is positive, off otherwise.
  83. Turning on Ivy mode sets `completing-read-function' to
  84. `ivy-completing-read'.
  85. Global bindings:
  86. \\{ivy-mode-map}
  87. Minibuffer bindings:
  88. \\{ivy-minibuffer-map}
  89. \(fn &optional ARG)" t nil)
  90. (autoload 'ivy-switch-buffer "ivy" "\
  91. Switch to another buffer.
  92. \(fn)" t nil)
  93. (autoload 'ivy-switch-view "ivy" "\
  94. Switch to one of the window views stored by `ivy-push-view'.
  95. \(fn)" t nil)
  96. (autoload 'ivy-switch-buffer-other-window "ivy" "\
  97. Switch to another buffer in another window.
  98. \(fn)" t nil)
  99. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ivy" '("ivy-" "with-ivy-window")))
  100. ;;;***
  101. ;;;### (autoloads nil "ivy-overlay" "ivy-overlay.el" (0 0 0 0))
  102. ;;; Generated autoloads from ivy-overlay.el
  103. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ivy-overlay" '("ivy-")))
  104. ;;;***
  105. ;;;### (autoloads nil nil ("elpa.el" "ivy-pkg.el") (0 0 0 0))
  106. ;;;***
  107. ;; Local Variables:
  108. ;; version-control: never
  109. ;; no-byte-compile: t
  110. ;; no-update-autoloads: t
  111. ;; coding: utf-8
  112. ;; End:
  113. ;;; ivy-autoloads.el ends here