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