-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b2d1ad
commit d4b792a
Showing
12 changed files
with
830 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
;;; ag-autoloads.el --- automatically extracted autoloads | ||
;; | ||
;;; Code: | ||
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) | ||
|
||
;;;### (autoloads nil "ag" "ag.el" (23160 23559 0 0)) | ||
;;; Generated autoloads from ag.el | ||
|
||
(autoload 'ag "ag" "\ | ||
Search using ag in a given DIRECTORY for a given search STRING, | ||
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" "\ | ||
Search using ag in a given DIRECTORY for a given search STRING, | ||
limited to files that match FILE-TYPE. STRING defaults to | ||
the symbol under point. | ||
If called with a prefix, prompts for flags to pass to ag. | ||
\(fn STRING FILE-TYPE DIRECTORY)" t nil) | ||
|
||
(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 | ||
for the given string. | ||
If called with a prefix, prompts for flags to pass to ag. | ||
\(fn STRING)" t nil) | ||
|
||
(autoload 'ag-project-files "ag" "\ | ||
Search using ag for a given search STRING, | ||
limited to files that match FILE-TYPE. STRING defaults to the | ||
symbol under point. | ||
If called with a prefix, prompts for flags to pass to ag. | ||
\(fn STRING FILE-TYPE)" t nil) | ||
|
||
(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" "\ | ||
Recursively find files in DIR matching PATTERN. | ||
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'. | ||
\(fn DIR PATTERN)" t nil) | ||
|
||
(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" "\ | ||
Kill all `ag-mode' buffers. | ||
\(fn)" t nil) | ||
|
||
(autoload 'ag-kill-other-buffers "ag" "\ | ||
Kill all `ag-mode' buffers other than the current buffer. | ||
\(fn)" t nil) | ||
|
||
;;;*** | ||
|
||
;; Local Variables: | ||
;; version-control: never | ||
;; no-byte-compile: t | ||
;; no-update-autoloads: t | ||
;; End: | ||
;;; ag-autoloads.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
;;; -*- no-byte-compile: t -*- | ||
(define-package "ag" "0.47" "A front-end for ag ('the silver searcher'), the C ack replacement." '((dash "2.8.0") (s "1.9.0") (cl-lib "0.5")) :commit "f2cfea210b165564e8d44f4c980b2fedac2462c1") |
Oops, something went wrong.