2014-10-05 12:57:41 +00:00
|
|
|
|
;;; ag-autoloads.el --- automatically extracted autoloads
|
|
|
|
|
;;
|
|
|
|
|
;;; Code:
|
2016-08-18 20:01:20 +00:00
|
|
|
|
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
2016-08-18 20:01:20 +00:00
|
|
|
|
;;;### (autoloads nil "ag" "ag.el" (22454 5337 972625 179000))
|
2014-10-05 12:57:41 +00:00
|
|
|
|
;;; Generated autoloads from ag.el
|
|
|
|
|
|
|
|
|
|
(autoload 'ag "ag" "\
|
2016-07-12 13:08:56 +00:00
|
|
|
|
Search using ag in a given DIRECTORY for a given literal search STRING,
|
2014-10-05 12:57:41 +00:00
|
|
|
|
with STRING defaulting to the symbol under point.
|
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
|
|
|
|
\(fn STRING DIRECTORY)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-files "ag" "\
|
2016-07-12 13:08:56 +00:00
|
|
|
|
Search using ag in a given DIRECTORY for a given literal search STRING,
|
|
|
|
|
limited to files that match FILE-TYPE. STRING defaults to the
|
|
|
|
|
symbol under point.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
2016-04-21 21:27:19 +00:00
|
|
|
|
\(fn STRING FILE-TYPE DIRECTORY)" t nil)
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
(autoload 'ag-regexp "ag" "\
|
|
|
|
|
Search using ag in a given directory for a given regexp.
|
|
|
|
|
The regexp should be in PCRE syntax, not Emacs regexp syntax.
|
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
|
|
|
|
\(fn STRING DIRECTORY)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-project "ag" "\
|
|
|
|
|
Guess the root of the current project and search it with ag
|
2016-07-12 13:08:56 +00:00
|
|
|
|
for the given literal search STRING.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
|
|
|
|
\(fn STRING)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-project-files "ag" "\
|
2016-07-12 13:08:56 +00:00
|
|
|
|
Search using ag for a given literal search STRING,
|
2016-04-21 21:27:19 +00:00
|
|
|
|
limited to files that match FILE-TYPE. STRING defaults to the
|
|
|
|
|
symbol under point.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
2016-04-21 21:27:19 +00:00
|
|
|
|
\(fn STRING FILE-TYPE)" t nil)
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
(autoload 'ag-project-regexp "ag" "\
|
|
|
|
|
Guess the root of the current project and search it with ag
|
|
|
|
|
for the given regexp. The regexp should be in PCRE syntax, not
|
|
|
|
|
Emacs regexp syntax.
|
|
|
|
|
|
|
|
|
|
If called with a prefix, prompts for flags to pass to ag.
|
|
|
|
|
|
|
|
|
|
\(fn REGEXP)" t nil)
|
|
|
|
|
|
|
|
|
|
(defalias 'ag-project-at-point 'ag-project)
|
|
|
|
|
|
|
|
|
|
(defalias 'ag-regexp-project-at-point 'ag-project-regexp)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-dired "ag" "\
|
2016-07-12 13:08:56 +00:00
|
|
|
|
Recursively find files in DIR matching literal search STRING.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
The PATTERN is matched against the full path to the file, not
|
|
|
|
|
only against the file name.
|
|
|
|
|
|
|
|
|
|
The results are presented as a `dired-mode' buffer with
|
|
|
|
|
`default-directory' being DIR.
|
|
|
|
|
|
|
|
|
|
See also `ag-dired-regexp'.
|
|
|
|
|
|
2016-07-12 13:08:56 +00:00
|
|
|
|
\(fn DIR STRING)" t nil)
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
(autoload 'ag-dired-regexp "ag" "\
|
|
|
|
|
Recursively find files in DIR matching REGEXP.
|
|
|
|
|
REGEXP should be in PCRE syntax, not Emacs regexp syntax.
|
|
|
|
|
|
|
|
|
|
The REGEXP is matched against the full path to the file, not
|
|
|
|
|
only against the file name.
|
|
|
|
|
|
|
|
|
|
Results are presented as a `dired-mode' buffer with
|
|
|
|
|
`default-directory' being DIR.
|
|
|
|
|
|
|
|
|
|
See also `find-dired'.
|
|
|
|
|
|
|
|
|
|
\(fn DIR REGEXP)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-project-dired "ag" "\
|
|
|
|
|
Recursively find files in current project matching PATTERN.
|
|
|
|
|
|
|
|
|
|
See also `ag-dired'.
|
|
|
|
|
|
|
|
|
|
\(fn PATTERN)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-project-dired-regexp "ag" "\
|
|
|
|
|
Recursively find files in current project matching REGEXP.
|
|
|
|
|
|
|
|
|
|
See also `ag-dired-regexp'.
|
|
|
|
|
|
|
|
|
|
\(fn REGEXP)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-kill-buffers "ag" "\
|
2016-04-21 21:27:19 +00:00
|
|
|
|
Kill all `ag-mode' buffers.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
\(fn)" t nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'ag-kill-other-buffers "ag" "\
|
2016-04-21 21:27:19 +00:00
|
|
|
|
Kill all `ag-mode' buffers other than the current buffer.
|
2014-10-05 12:57:41 +00:00
|
|
|
|
|
|
|
|
|
\(fn)" t nil)
|
|
|
|
|
|
|
|
|
|
;;;***
|
|
|
|
|
|
|
|
|
|
;; Local Variables:
|
|
|
|
|
;; version-control: never
|
|
|
|
|
;; no-byte-compile: t
|
|
|
|
|
;; no-update-autoloads: t
|
|
|
|
|
;; End:
|
|
|
|
|
;;; ag-autoloads.el ends here
|