fzy
terminal fuzzy finder picker
git clone https://9o.is/git/fzy.git
commit 2273c79c39420dbbfd5d788934926daec3fd9e25 parent a4b6e12e9527456ce5c849c743880a49add26005 Author: John Hawthorn <john@hawthorn.email> Date: Sat, 2 Feb 2019 21:34:52 -0800 Merge pull request #101 from cisenor/Add-Path-To-Command-To-Support-OS-x Add Path To Find Command Diffstat:
| M | README.md | | | 7 | ++++--- |
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md @@ -85,9 +85,9 @@ function! FzyCommand(choice_command, vim_command) endif endfunction -nnoremap <leader>e :call FzyCommand("find -type f", ":e")<cr> -nnoremap <leader>v :call FzyCommand("find -type f", ":vs")<cr> -nnoremap <leader>s :call FzyCommand("find -type f", ":sp")<cr> +nnoremap <leader>e :call FzyCommand("find . -type f", ":e")<cr> +nnoremap <leader>v :call FzyCommand("find . -type f", ":vs")<cr> +nnoremap <leader>s :call FzyCommand("find . -type f", ":sp")<cr> ``` Any program can be used to filter files presented through fzy. [ag (the silver searcher)](https://github.com/ggreer/the_silver_searcher) can be used to ignore files specified by `.gitignore`. @@ -114,3 +114,4 @@ It prefers shorter candidates: `test` matches <tt><b>test</b>s</tt> over <tt><b> * [fzy.js](https://github.com/jhawthorn/fzy.js) Javascript port +