|
|
;;; find-file-in-project-autoloads.el --- automatically extracted autoloads
|
|
|
;;
|
|
|
;;; Code:
|
|
|
(add-to-list 'load-path (or (file-name-directory #$) (car load-path)))
|
|
|
|
|
|
;;;### (autoloads nil "find-file-in-project" "find-file-in-project.el"
|
|
|
;;;;;; (22171 46573 0 0))
|
|
|
;;; Generated autoloads from find-file-in-project.el
|
|
|
|
|
|
(autoload 'ffip-project-root "find-file-in-project" "\
|
|
|
Return the root of the project.
|
|
|
|
|
|
\(fn)" nil nil)
|
|
|
|
|
|
(autoload 'ffip-filename-identity "find-file-in-project" "\
|
|
|
Return identical KEYWORD.
|
|
|
|
|
|
\(fn KEYWORD)" nil nil)
|
|
|
|
|
|
(autoload 'ffip-filename-camelcase-to-dashes "find-file-in-project" "\
|
|
|
Convert KEYWORD from camel cased to dash seperated.
|
|
|
If CHECK-ONLY is true, only do the check.
|
|
|
|
|
|
\(fn KEYWORD &optional CHECK-ONLY)" nil nil)
|
|
|
|
|
|
(autoload 'ffip-filename-dashes-to-camelcase "find-file-in-project" "\
|
|
|
Convert KEYWORD from dash seperated to camel cased.
|
|
|
If CHECK-ONLY is true, only do the check.
|
|
|
|
|
|
\(fn KEYWORD &optional CHECK-ONLY)" nil nil)
|
|
|
|
|
|
(autoload 'ffip-create-project-file "find-file-in-project" "\
|
|
|
Create .dir-locals.el to setup find-file-in-project per directory.
|
|
|
Modify and place .dir-locals.el to your project root.
|
|
|
See (info \"(Emacs) Directory Variables\") for details.
|
|
|
|
|
|
\(fn)" t nil)
|
|
|
|
|
|
(autoload 'ffip-current-full-filename-match-pattern-p "find-file-in-project" "\
|
|
|
Is current full file name (including directory) match the REGEX?
|
|
|
|
|
|
\(fn REGEX)" nil nil)
|
|
|
|
|
|
(autoload 'find-file-in-project "find-file-in-project" "\
|
|
|
Prompt with a completing list of all files in the project to find one.
|
|
|
|
|
|
If OPEN-ANOTHER-WINDOW is not nil, the file will be opened in new window.
|
|
|
|
|
|
The project's scope is defined as the first directory containing
|
|
|
a `ffip-project-file' (It's value is \".git\" by default.
|
|
|
|
|
|
You can override this by setting the variable `ffip-project-root'.
|
|
|
|
|
|
\(fn &optional OPEN-ANOTHER-WINDOW)" t nil)
|
|
|
|
|
|
(autoload 'ffip-get-project-root-directory "find-file-in-project" "\
|
|
|
Get the full path of project root directory.
|
|
|
|
|
|
\(fn)" nil nil)
|
|
|
|
|
|
(autoload 'find-file-in-project-by-selected "find-file-in-project" "\
|
|
|
Similar to `find-file-in-project'.
|
|
|
But use string from selected region to search files in the project.
|
|
|
If no region is selected, you need provide keyword.
|
|
|
|
|
|
Keyword could be ANY part of the file's full path and support wildcard.
|
|
|
For example, to find /home/john/proj1/test.js, below keywords are valid:
|
|
|
- test.js
|
|
|
- roj1/tes
|
|
|
- john*test
|
|
|
|
|
|
If OPEN-ANOTHER-WINDOW is not nil, the file will be opened in new window.
|
|
|
|
|
|
\(fn &optional OPEN-ANOTHER-WINDOW)" t nil)
|
|
|
|
|
|
(autoload 'find-directory-in-project-by-selected "find-file-in-project" "\
|
|
|
Similar to `find-file-in-project-by-selected'.
|
|
|
Use string from selected region to find directory in the project.
|
|
|
If no region is selected, you need provide keyword.
|
|
|
|
|
|
Keyword could be directory's base-name only or parent-directoy+base-name
|
|
|
For example, to find /home/john/proj1/test, below keywords are valid:
|
|
|
- test
|
|
|
- roj1/test
|
|
|
- john*test
|
|
|
|
|
|
If OPEN-ANOTHER-WINDOW is not nil, the file will be opened in new window.
|
|
|
|
|
|
\(fn &optional OPEN-ANOTHER-WINDOW)" t nil)
|
|
|
|
|
|
(defalias 'ffip 'find-file-in-project)
|
|
|
|
|
|
;;;***
|
|
|
|
|
|
;; Local Variables:
|
|
|
;; version-control: never
|
|
|
;; no-byte-compile: t
|
|
|
;; no-update-autoloads: t
|
|
|
;; End:
|
|
|
;;; find-file-in-project-autoloads.el ends here
|