1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
Source: find-file-in-project
Section: lisp
Priority: optional
Maintainer: Debian Emacsen team <debian-emacsen@lists.debian.org>
Uploaders: Nicholas D Steeves <sten@debian.org>,
Xiyue Deng <manphiz@gmail.com>,
Build-Depends: debhelper-compat (= 13)
, dh-elpa
Rules-Requires-Root: no
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/emacsen-team/find-file-in-project
Vcs-Git: https://salsa.debian.org/emacsen-team/find-file-in-project.git
Homepage: https://github.com/technomancy/find-file-in-project
Testsuite: autopkgtest-pkg-elpa
Package: elpa-find-file-in-project
Architecture: all
Depends: ${elpa:Depends}
, ${misc:Depends}
, git
Recommends: emacs
, fd-find
Enhances: emacs
Suggests: elpa-ivy | elpa-helm
, elpa-counsel
Description: quick access to project files in Emacs
This library provides methods for quickly finding any file in a project. It
uses GNU Find by default, but can also use (the significantly faster)
fd-find. Find-file-in-project supports the following candidate selection
interfaces: Consult, Helm, Ido, Ivy, Selectrum, and the Emacs built-in
'completing-read'.
.
By default, FFIP will search for files in a local Git, Subversion, or
Mercurial repository. FFIP uses TRAMP to find files in remote
repositories, and claims this is "flawlessly" supported.
.
Features:
.
* Fast! Tested with projects that have 50,000+ files
* Find's behaviour can be tweaked using ffip-find-options
* Smart! The keyword "helloWorld", returns "HelloWorld.html",
"hello-world.css", and "HelloWorld.js".
* Enhances diff-mode with more convenient patch-handling, including
diff creation, application, finding the file associated with a given
hunk, and jumping to the section relevant to that hunk
* No configuration required. Find-file-in-project works out-of-the-box
* Supports evil-mode, with additional configuration (see README)
|