Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xuchunyang/helm-fuzzy-find
Find files using Fuzzy Search
https://github.com/xuchunyang/helm-fuzzy-find
Last synced: about 1 month ago
JSON representation
Find files using Fuzzy Search
- Host: GitHub
- URL: https://github.com/xuchunyang/helm-fuzzy-find
- Owner: xuchunyang
- Created: 2015-06-10T05:55:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-06T04:02:33.000Z (about 7 years ago)
- Last Synced: 2024-10-16T01:46:12.003Z (3 months ago)
- Language: Emacs Lisp
- Size: 5.86 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![MELPA](http://melpa.org/packages/helm-fuzzy-find-badge.svg)](http://melpa.org/#/helm-fuzzy-find)
# helm-fuzzy-find
`helm-fuzzy-find.el` is a helm extension for the
[`fuzzy-find`](https://github.com/silentbicycle/ff) command line program, you
can use it to search files under a directory using Fuzzy Search.When you want to search files only according to their base-names, use the
notable `find` program and its helm interface `helm-find` instead, but if
you also use their parent directory names, i.e., full absolute path name of
a file or directory, `fuzzy-find` is probably better. You can read `fuzzy-find`'s
homepage and manual page to learn more about these.## Installation
To install, make sure this file is saved in a directory in your `load-path`,
and add the line:```elisp
(require 'helm-fuzzy-find)
```to your Emacs initialization file.
## Usage
M-x helm-fuzzy-find to launch `helm-fuzzy-find` from the current buffer's
directory, if with prefix argument, you can choose a directory to search.Like `helm-find`, you can also launch `helm-fuzzy-find` from
`helm-find-files` (it usually binds to C-x C-f for helm users) by typing
C-c C-/ (you can customize this key by setting `helm-fuzzy-find-keybind`).## Note
To use `helm-fuzzy-find`, you need to know the format (**NOT** regexp) of the
query string of `fuzzy-find`, especially the meaning of "/" character and "="
character, refer to its manual page for more info.To install `fuzzy-find` on Mac OS X via MacPorts:
```console
$ sudo port install fuzzy-find
```