blob: e6d17d45b9ea7a44a9c0159bf100e0b2f4150018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# fzy
# https://github.com/jhawthorn/fzy
# Dependencies:
# – ripgrep (https://github.com/BurntSushi/ripgrep)
rg --column --with-filename '.+' "$@" |
fzy --prompt='(g)>' |
:edit-search
|