18 lines
340 B
Bash
Executable file
18 lines
340 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eEuCo pipefail
|
|
|
|
rg \
|
|
--no-heading \
|
|
--color always \
|
|
-n \
|
|
"$@" \
|
|
| fzf \
|
|
--marker=\* \
|
|
--delimiter=: \
|
|
--border \
|
|
--cycle \
|
|
--layout=reverse \
|
|
--ansi \
|
|
--tiebreak=index \
|
|
--preview 'zat --highlight {2} --limit $FZF_PREVIEW_LINES {1}'
|