dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

xref-autoloads.el (4483B)


      1 ;;; xref-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 (file-name-directory load-file-name)) (car load-path)))
      9 
     10 
     11 
     12 ;;; Generated autoloads from xref.el
     13 
     14 (autoload 'xref-find-backend "xref")
     15 (define-obsolete-function-alias 'xref-pop-marker-stack #'xref-go-back "29.1")
     16 (autoload 'xref-go-back "xref" "\
     17 Go back to the previous position in xref history.
     18 To undo, use \\[xref-go-forward]." t)
     19 (autoload 'xref-go-forward "xref" "\
     20 Got to the point where a previous \\[xref-go-back] was invoked." t)
     21 (autoload 'xref-marker-stack-empty-p "xref" "\
     22 Whether the xref back-history is empty.")
     23 (autoload 'xref-forward-history-empty-p "xref" "\
     24 Whether the xref forward-history is empty.")
     25 (autoload 'xref-show-xrefs "xref" "\
     26 Display some Xref values produced by FETCHER using DISPLAY-ACTION.
     27 The meanings of both arguments are the same as documented in
     28 `xref-show-xrefs-function'.
     29 
     30 (fn FETCHER DISPLAY-ACTION)")
     31 (autoload 'xref-find-definitions "xref" "\
     32 Find the definition of the identifier at point.
     33 With prefix argument or when there's no identifier at point,
     34 prompt for it.
     35 
     36 If sufficient information is available to determine a unique
     37 definition for IDENTIFIER, display it in the selected window.
     38 Otherwise, display the list of the possible definitions in a
     39 buffer where the user can select from the list.
     40 
     41 Use \\[xref-go-back] to return back to where you invoked this command.
     42 
     43 (fn IDENTIFIER)" t)
     44 (autoload 'xref-find-definitions-other-window "xref" "\
     45 Like `xref-find-definitions' but switch to the other window.
     46 
     47 (fn IDENTIFIER)" t)
     48 (autoload 'xref-find-definitions-other-frame "xref" "\
     49 Like `xref-find-definitions' but switch to the other frame.
     50 
     51 (fn IDENTIFIER)" t)
     52 (autoload 'xref-find-references "xref" "\
     53 Find references to the identifier at point.
     54 This command might prompt for the identifier as needed, perhaps
     55 offering the symbol at point as the default.
     56 With prefix argument, or if `xref-prompt-for-identifier' is t,
     57 always prompt for the identifier.  If `xref-prompt-for-identifier'
     58 is nil, prompt only if there's no usable symbol at point.
     59 
     60 (fn IDENTIFIER)" t)
     61 (autoload 'xref-find-definitions-at-mouse "xref" "\
     62 Find the definition of identifier at or around mouse click.
     63 This command is intended to be bound to a mouse event.
     64 
     65 (fn EVENT)" t)
     66 (autoload 'xref-find-references-at-mouse "xref" "\
     67 Find references to the identifier at or around mouse click.
     68 This command is intended to be bound to a mouse event.
     69 
     70 (fn EVENT)" t)
     71 (autoload 'xref-find-apropos "xref" "\
     72 Find all meaningful symbols that match PATTERN.
     73 The argument has the same meaning as in `apropos'.
     74 See `tags-apropos-additional-actions' for how to augment the
     75 output of this command when the backend is etags.
     76 
     77 (fn PATTERN)" t)
     78  (define-key esc-map "." #'xref-find-definitions)
     79  (define-key esc-map "," #'xref-go-back)
     80  (define-key esc-map [?\C-,] #'xref-go-forward)
     81  (define-key esc-map "?" #'xref-find-references)
     82  (define-key esc-map [?\C-.] #'xref-find-apropos)
     83  (define-key ctl-x-4-map "." #'xref-find-definitions-other-window)
     84  (define-key ctl-x-5-map "." #'xref-find-definitions-other-frame)
     85 (autoload 'xref-references-in-directory "xref" "\
     86 Find all references to SYMBOL in directory DIR.
     87 Return a list of xref values.
     88 
     89 This function uses the Semantic Symbol Reference API, see
     90 `semantic-symref-tool-alist' for details on which tools are used,
     91 and when.
     92 
     93 (fn SYMBOL DIR)")
     94 (autoload 'xref-matches-in-directory "xref" "\
     95 Find all matches for REGEXP in directory DIR.
     96 Return a list of xref values.
     97 Only files matching some of FILES and none of IGNORES are searched.
     98 FILES is a string with glob patterns separated by spaces.
     99 IGNORES is a list of glob patterns for files to ignore.
    100 
    101 (fn REGEXP FILES DIR IGNORES)")
    102 (autoload 'xref-matches-in-files "xref" "\
    103 Find all matches for REGEXP in FILES.
    104 Return a list of xref values.
    105 FILES must be a list of absolute file names.
    106 
    107 See `xref-search-program' and `xref-search-program-alist' for how
    108 to control which program to use when looking for matches.
    109 
    110 (fn REGEXP FILES)")
    111 (register-definition-prefixes "xref" '("xref-"))
    112 
    113 ;;; End of scraped data
    114 
    115 (provide 'xref-autoloads)
    116 
    117 ;; Local Variables:
    118 ;; version-control: never
    119 ;; no-byte-compile: t
    120 ;; no-update-autoloads: t
    121 ;; no-native-compile: t
    122 ;; coding: utf-8-emacs-unix
    123 ;; End:
    124 
    125 ;;; xref-autoloads.el ends here