config

Personal configuration.
git clone git://code.dwrz.net/config
Log | Files | Refs

consult-autoloads.el (17498B)


      1 ;;; consult-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (or (and load-file-name (directory-file-name (file-name-directory load-file-name))) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from consult.el
     13 
     14 (autoload 'consult-completion-in-region "consult" "\
     15 Use minibuffer completion as the UI for `completion-at-point'.
     16 
     17 The function is called with 4 arguments: START END COLLECTION
     18 PREDICATE.  The arguments and expected return value are as
     19 specified for `completion-in-region'.  Use this function as a
     20 value for `completion-in-region-function'.
     21 
     22 (fn START END COLLECTION &optional PREDICATE)")
     23 (autoload 'consult-outline "consult" "\
     24 Jump to an outline heading, obtained by matching against `outline-regexp'.
     25 
     26 This command supports narrowing to a heading level and candidate
     27 preview.  The initial narrowing LEVEL can be given as prefix
     28 argument.  The symbol at point is added to the future history.
     29 
     30 (fn &optional LEVEL)" t)
     31 (autoload 'consult-mark "consult" "\
     32 Jump to a marker in MARKERS list (defaults to buffer-local `mark-ring').
     33 
     34 The command supports preview of the currently selected marker position.
     35 The symbol at point is added to the future history.
     36 
     37 (fn &optional MARKERS)" t)
     38 (autoload 'consult-global-mark "consult" "\
     39 Jump to a marker in MARKERS list (defaults to `global-mark-ring').
     40 
     41 The command supports preview of the currently selected marker position.
     42 The symbol at point is added to the future history.
     43 
     44 (fn &optional MARKERS)" t)
     45 (autoload 'consult-line "consult" "\
     46 Search for a matching line.
     47 
     48 Depending on the setting `consult-point-placement' the command
     49 jumps to the beginning or the end of the first match on the line
     50 or the line beginning.  The default candidate is the non-empty
     51 line next to point.  This command obeys narrowing.  Optional
     52 INITIAL input can be provided.  The search starting point is
     53 changed if the START prefix argument is set.  The symbol at point
     54 and the last `isearch-string' is added to the future history.
     55 
     56 (fn &optional INITIAL START)" t)
     57 (autoload 'consult-line-multi "consult" "\
     58 Search for a matching line in multiple buffers.
     59 
     60 By default search across all project buffers.  If the prefix
     61 argument QUERY is non-nil, all buffers are searched.  Optional
     62 INITIAL input can be provided.  The symbol at point and the last
     63 `isearch-string' is added to the future history.  In order to
     64 search a subset of buffers, QUERY can be set to a plist according
     65 to `consult--buffer-query'.
     66 
     67 (fn QUERY &optional INITIAL)" t)
     68 (autoload 'consult-keep-lines "consult" "\
     69 Select a subset of the lines in the current buffer with live preview.
     70 
     71 The selected lines are kept and the other lines are deleted.  When called
     72 interactively, the lines selected are those that match the minibuffer input.  In
     73 order to match the inverse of the input, prefix the input with `! '.  When
     74 called from Elisp, the filtering is performed by a FILTER function.  This
     75 command obeys narrowing.
     76 
     77 FILTER is the filter function.
     78 INITIAL is the initial input.
     79 
     80 (fn FILTER &optional INITIAL)" t)
     81 (autoload 'consult-focus-lines "consult" "\
     82 Hide or show lines using overlays.
     83 
     84 The selected lines are shown and the other lines hidden.  When called
     85 interactively, the lines selected are those that match the minibuffer input.  In
     86 order to match the inverse of the input, prefix the input with `! '.  With
     87 optional prefix argument SHOW reveal the hidden lines.  Alternatively the
     88 command can be restarted to reveal the lines.  When called from Elisp, the
     89 filtering is performed by a FILTER function.  This command obeys narrowing.
     90 
     91 FILTER is the filter function.
     92 INITIAL is the initial input.
     93 
     94 (fn FILTER &optional SHOW INITIAL)" t)
     95 (autoload 'consult-goto-line "consult" "\
     96 Read line number and jump to the line with preview.
     97 
     98 Enter either a line number to jump to the first column of the
     99 given line or line:column in order to jump to a specific column.
    100 Jump directly if a line number is given as prefix ARG.  The
    101 command respects narrowing and the settings
    102 `consult-goto-line-numbers' and `consult-line-numbers-widen'.
    103 
    104 (fn &optional ARG)" t)
    105 (autoload 'consult-recent-file "consult" "\
    106 Find recent file using `completing-read'." t)
    107 (autoload 'consult-mode-command "consult" "\
    108 Run a command from any of the given MODES.
    109 
    110 If no MODES are specified, use currently active major and minor modes.
    111 
    112 (fn &rest MODES)" t)
    113 (autoload 'consult-yank-from-kill-ring "consult" "\
    114 Select STRING from the kill ring and insert it.
    115 With prefix ARG, put point at beginning, and mark at end, like `yank' does.
    116 
    117 This command behaves like `yank-from-kill-ring' in Emacs 28, which also offers
    118 a `completing-read' interface to the `kill-ring'.  Additionally the Consult
    119 version supports preview of the selected string.
    120 
    121 (fn STRING &optional ARG)" t)
    122 (autoload 'consult-yank-pop "consult" "\
    123 If there is a recent yank act like `yank-pop'.
    124 
    125 Otherwise select string from the kill ring and insert it.
    126 See `yank-pop' for the meaning of ARG.
    127 
    128 This command behaves like `yank-pop' in Emacs 28, which also offers a
    129 `completing-read' interface to the `kill-ring'.  Additionally the Consult
    130 version supports preview of the selected string.
    131 
    132 (fn &optional ARG)" t)
    133 (autoload 'consult-yank-replace "consult" "\
    134 Select STRING from the kill ring.
    135 
    136 If there was no recent yank, insert the string.
    137 Otherwise replace the just-yanked string with the selected string.
    138 
    139 There exists no equivalent of this command in Emacs 28.
    140 
    141 (fn STRING)" t)
    142 (autoload 'consult-bookmark "consult" "\
    143 If bookmark NAME exists, open it, otherwise create a new bookmark with NAME.
    144 
    145 The command supports preview of file bookmarks and narrowing.  See the
    146 variable `consult-bookmark-narrow' for the narrowing configuration.
    147 
    148 (fn NAME)" t)
    149 (autoload 'consult-complex-command "consult" "\
    150 Select and evaluate command from the command history.
    151 
    152 This command can act as a drop-in replacement for `repeat-complex-command'." t)
    153 (autoload 'consult-history "consult" "\
    154 Insert string from HISTORY of current buffer.
    155 In order to select from a specific HISTORY, pass the history
    156 variable as argument.  INDEX is the name of the index variable to
    157 update, if any.  BOL is the function which jumps to the beginning
    158 of the prompt.  See also `cape-history' from the Cape package.
    159 
    160 (fn &optional HISTORY INDEX BOL)" t)
    161 (autoload 'consult-isearch-history "consult" "\
    162 Read a search string with completion from the Isearch history.
    163 
    164 This replaces the current search string if Isearch is active, and
    165 starts a new Isearch session otherwise." t)
    166 (autoload 'consult-minor-mode-menu "consult" "\
    167 Enable or disable minor mode.
    168 
    169 This is an alternative to `minor-mode-menu-from-indicator'." t)
    170 (autoload 'consult-theme "consult" "\
    171 Disable current themes and enable THEME from `consult-themes'.
    172 
    173 The command supports previewing the currently selected theme.
    174 
    175 (fn THEME)" t)
    176 (autoload 'consult-buffer "consult" "\
    177 Enhanced `switch-to-buffer' command with support for virtual buffers.
    178 
    179 The command supports recent files, bookmarks, views and project files as
    180 virtual buffers.  Buffers are previewed.  Narrowing to buffers (b), files (f),
    181 bookmarks (m) and project files (p) is supported via the corresponding
    182 keys.  In order to determine the project-specific files and buffers, the
    183 `consult-project-function' is used.  The virtual buffer SOURCES
    184 default to `consult-buffer-sources'.  See `consult--multi' for the
    185 configuration of the virtual buffer sources.
    186 
    187 (fn &optional SOURCES)" t)
    188 (autoload 'consult-project-buffer "consult" "\
    189 Enhanced `project-switch-to-buffer' command with support for virtual buffers.
    190 The command may prompt you for a project directory if it is invoked from
    191 outside a project.  See `consult-buffer' for more details." t)
    192 (autoload 'consult-buffer-other-window "consult" "\
    193 Variant of `consult-buffer', switching to a buffer in another window." t)
    194 (autoload 'consult-buffer-other-frame "consult" "\
    195 Variant of `consult-buffer', switching to a buffer in another frame." t)
    196 (autoload 'consult-buffer-other-tab "consult" "\
    197 Variant of `consult-buffer', switching to a buffer in another tab." t)
    198 (autoload 'consult-grep "consult" "\
    199 Search with `grep' for files in DIR where the content matches a regexp.
    200 
    201 The initial input is given by the INITIAL argument.  DIR can be nil, a
    202 directory string or a list of file/directory paths.  If `consult-grep'
    203 is called interactively with a prefix argument, the user can specify the
    204 directories or files to search in.  Multiple directories or files must
    205 be separated by comma in the minibuffer, since they are read via
    206 `completing-read-multiple'.  By default the project directory is used if
    207 `consult-project-function' is defined and returns non-nil.  Otherwise
    208 the `default-directory' is searched.  If the command is invoked with a
    209 double prefix argument (twice `C-u') the user is asked for a project, if
    210 not yet inside a project, or the current project is searched.
    211 
    212 The input string is split, the first part of the string (grep input) is
    213 passed to the asynchronous grep process and the second part of the
    214 string is passed to the completion-style filtering.
    215 
    216 The input string is split at a punctuation character, which is given as
    217 the first character of the input string.  The format is similar to
    218 Perl-style regular expressions, e.g., /regexp/.  Furthermore command
    219 line options can be passed to grep, specified behind --.  The overall
    220 prompt input has the form `#async-input -- grep-opts#filter-string'.
    221 
    222 Note that the grep input string is transformed from Emacs regular
    223 expressions to Posix regular expressions.  Always enter Emacs regular
    224 expressions at the prompt.  `consult-grep' behaves like builtin Emacs
    225 search commands, e.g., Isearch, which take Emacs regular expressions.
    226 Furthermore the asynchronous input split into words, each word must
    227 match separately and in any order.  See `consult--regexp-compiler' for
    228 the inner workings.  In order to disable transformations of the grep
    229 input, adjust `consult--regexp-compiler' accordingly.
    230 
    231 Here we give a few example inputs:
    232 
    233 #alpha beta         : Search for alpha and beta in any order.
    234 #alpha.*beta        : Search for alpha before beta.
    235 #\\(alpha\\|beta\\) : Search for alpha or beta (Note Emacs syntax!)
    236 #word -- -C3        : Search for word, include 3 lines as context
    237 #first#second       : Search for first, quick filter for second.
    238 
    239 The symbol at point is added to the future history.
    240 
    241 (fn &optional DIR INITIAL)" t)
    242 (autoload 'consult-git-grep "consult" "\
    243 Search with `git grep' for files in DIR with INITIAL input.
    244 See `consult-grep' for details.
    245 
    246 (fn &optional DIR INITIAL)" t)
    247 (autoload 'consult-ripgrep "consult" "\
    248 Search with `rg' for files in DIR with INITIAL input.
    249 See `consult-grep' for details.
    250 
    251 (fn &optional DIR INITIAL)" t)
    252 (autoload 'consult-find "consult" "\
    253 Search for files with `find' in DIR.
    254 The file names must match the input regexp.  INITIAL is the
    255 initial minibuffer input.  See `consult-grep' for details
    256 regarding the asynchronous search and the arguments.
    257 
    258 (fn &optional DIR INITIAL)" t)
    259 (autoload 'consult-fd "consult" "\
    260 Search for files with `fd' in DIR.
    261 The file names must match the input regexp.  INITIAL is the
    262 initial minibuffer input.  See `consult-grep' for details
    263 regarding the asynchronous search and the arguments.
    264 
    265 (fn &optional DIR INITIAL)" t)
    266 (autoload 'consult-locate "consult" "\
    267 Search with `locate' for files which match input given INITIAL input.
    268 
    269 The input is treated literally such that locate can take advantage of
    270 the locate database index.  Regular expressions would often force a slow
    271 linear search through the entire database.  The locate process is started
    272 asynchronously, similar to `consult-grep'.  See `consult-grep' for more
    273 details regarding the asynchronous search.
    274 
    275 (fn &optional INITIAL)" t)
    276 (autoload 'consult-man "consult" "\
    277 Search for man page given INITIAL input.
    278 
    279 The input string is not preprocessed and passed literally to the
    280 underlying man commands.  The man process is started asynchronously,
    281 similar to `consult-grep'.  See `consult-grep' for more details regarding
    282 the asynchronous search.
    283 
    284 (fn &optional INITIAL)" t)
    285 (register-definition-prefixes "consult" '("consult-"))
    286 
    287 
    288 ;;; Generated autoloads from consult-compile.el
    289 
    290 (autoload 'consult-compile-error "consult-compile" "\
    291 Jump to a compilation error in the current buffer.
    292 
    293 This command collects entries from compilation buffers and grep
    294 buffers related to the current buffer.  The command supports
    295 preview of the currently selected error." t)
    296 (register-definition-prefixes "consult-compile" '("consult-compile--"))
    297 
    298 
    299 ;;; Generated autoloads from consult-flymake.el
    300 
    301 (autoload 'consult-flymake "consult-flymake" "\
    302 Jump to Flymake diagnostic.
    303 When PROJECT is non-nil then prompt with diagnostics from all
    304 buffers in the current project instead of just the current buffer.
    305 
    306 (fn &optional PROJECT)" t)
    307 (register-definition-prefixes "consult-flymake" '("consult-flymake--"))
    308 
    309 
    310 ;;; Generated autoloads from consult-imenu.el
    311 
    312 (autoload 'consult-imenu "consult-imenu" "\
    313 Select item from flattened `imenu' using `completing-read' with preview.
    314 
    315 The command supports preview and narrowing.  See the variable
    316 `consult-imenu-config', which configures the narrowing.
    317 The symbol at point is added to the future history.
    318 
    319 See also `consult-imenu-multi'." t)
    320 (autoload 'consult-imenu-multi "consult-imenu" "\
    321 Select item from the imenus of all buffers from the same project.
    322 
    323 In order to determine the buffers belonging to the same project, the
    324 `consult-project-function' is used.  Only the buffers with the
    325 same major mode as the current buffer are used.  See also
    326 `consult-imenu' for more details.  In order to search a subset of buffers,
    327 QUERY can be set to a plist according to `consult--buffer-query'.
    328 
    329 (fn &optional QUERY)" t)
    330 (register-definition-prefixes "consult-imenu" '("consult-imenu-"))
    331 
    332 
    333 ;;; Generated autoloads from consult-info.el
    334 
    335 (autoload 'consult-info "consult-info" "\
    336 Full text search through info MANUALS.
    337 
    338 (fn &rest MANUALS)" t)
    339 (register-definition-prefixes "consult-info" '("consult-info--"))
    340 
    341 
    342 ;;; Generated autoloads from consult-kmacro.el
    343 
    344 (autoload 'consult-kmacro "consult-kmacro" "\
    345 Run a chosen keyboard macro.
    346 
    347 With prefix ARG, run the macro that many times.
    348 Macros containing mouse clicks are omitted.
    349 
    350 (fn ARG)" t)
    351 (register-definition-prefixes "consult-kmacro" '("consult-kmacro--"))
    352 
    353 
    354 ;;; Generated autoloads from consult-org.el
    355 
    356 (autoload 'consult-org-heading "consult-org" "\
    357 Jump to an Org heading.
    358 
    359 MATCH and SCOPE are as in `org-map-entries' and determine which
    360 entries are offered.  By default, all entries of the current
    361 buffer are offered.
    362 
    363 (fn &optional MATCH SCOPE)" t)
    364 (autoload 'consult-org-agenda "consult-org" "\
    365 Jump to an Org agenda heading.
    366 
    367 By default, all agenda entries are offered.  MATCH is as in
    368 `org-map-entries' and can used to refine this.
    369 
    370 (fn &optional MATCH)" t)
    371 (register-definition-prefixes "consult-org" '("consult-org--"))
    372 
    373 
    374 ;;; Generated autoloads from consult-register.el
    375 
    376 (autoload 'consult-register-window "consult-register" "\
    377 Enhanced drop-in replacement for `register-preview'.
    378 
    379 BUFFER is the window buffer.
    380 SHOW-EMPTY must be t if the window should be shown for an empty register list.
    381 
    382 (fn BUFFER &optional SHOW-EMPTY)")
    383 (autoload 'consult-register-format "consult-register" "\
    384 Enhanced preview of register REG.
    385 This function can be used as `register-preview-function'.
    386 If COMPLETION is non-nil format the register for completion.
    387 
    388 (fn REG &optional COMPLETION)")
    389 (autoload 'consult-register "consult-register" "\
    390 Load register and either jump to location or insert the stored text.
    391 
    392 This command is useful to search the register contents.  For quick access
    393 to registers it is still recommended to use the register functions
    394 `consult-register-load' and `consult-register-store' or the built-in
    395 built-in register access functions.  The command supports narrowing, see
    396 `consult-register--narrow'.  Marker positions are previewed.  See
    397 `jump-to-register' and `insert-register' for the meaning of prefix ARG.
    398 
    399 (fn &optional ARG)" t)
    400 (autoload 'consult-register-load "consult-register" "\
    401 Do what I mean with a REG.
    402 
    403 For a window configuration, restore it.  For a number or text, insert it.
    404 For a location, jump to it.  See `jump-to-register' and `insert-register'
    405 for the meaning of prefix ARG.
    406 
    407 (fn REG &optional ARG)" t)
    408 (autoload 'consult-register-store "consult-register" "\
    409 Store register dependent on current context, showing an action menu.
    410 
    411 With an active region, store/append/prepend the contents, optionally
    412 deleting the region when a prefix ARG is given.  With a numeric prefix
    413 ARG, store or add the number.  Otherwise store point, frameset, window or
    414 kmacro.
    415 
    416 (fn ARG)" t)
    417 (register-definition-prefixes "consult-register" '("consult-register-"))
    418 
    419 
    420 ;;; Generated autoloads from consult-xref.el
    421 
    422 (autoload 'consult-xref "consult-xref" "\
    423 Show xrefs with preview in the minibuffer.
    424 
    425 This function can be used for `xref-show-xrefs-function'.
    426 See `xref-show-xrefs-function' for the description of the
    427 FETCHER and ALIST arguments.
    428 
    429 (fn FETCHER &optional ALIST)")
    430 (register-definition-prefixes "consult-xref" '("consult-xref--"))
    431 
    432 ;;; End of scraped data
    433 
    434 (provide 'consult-autoloads)
    435 
    436 ;; Local Variables:
    437 ;; version-control: never
    438 ;; no-byte-compile: t
    439 ;; no-update-autoloads: t
    440 ;; no-native-compile: t
    441 ;; coding: utf-8-emacs-unix
    442 ;; End:
    443 
    444 ;;; consult-autoloads.el ends here