blob: 2556b78b8b2f6d37b390c0fe2dbff134f4a0eae4 (
plain)
1
2
3
4
5
6
7
8
|
fif() {
if [ ! "$#" -gt 0 ]; then echo "Need a string to search for!"; return 1; fi
rg --files-with-matches --no-messages "$1" | fzf --preview "highlight -O ansi -l {} 2> /dev/null | rg --colors 'match:bg:yellow' --ignore-case --pretty --context 10 '$1' || rg --ignore-case --pretty --context 10 '$1' {}"
}
alias fz='fuz --sorttime'
alias fze='fuz --edit'
alias fzd='fuz --dir-search'
|