-
-
Notifications
You must be signed in to change notification settings - Fork 389
Findutils
Thierry Volpiatto edited this page Sep 1, 2024
·
2 revisions
helm-find
Uses GNU find to search for files in a directory hierarchy.
Execute helm-find
(bound to <helm-prefix> /
by default). The search with this command is actually performed literally, however you can use a space to
match multiple pattern within a line.
Hit C-c /
while using helm-find-files
.
On Windows, you need to install the MSYS version of find
because the GnuWin32 version is not working.
The MSYS
version of find
is not available as a standalone program;
it must be installed as part of MSYS
, which is installed using the
MinGW installer. Steps are as follows:
- Download and install the MinGW installer.
- Install
find
with the installer. - Add MSYS
bin
directory toPATH
(e.g.C:\MinGW\msys\1.0\bin
).
I believe MinGW itself does not have to be installed, but I could be wrong.