summaryrefslogtreecommitdiff
path: root/rc/connect/modules/fzf/commands/:fzf-files
blob: 060d91d21f917474a2d582cd170bf749b41fa955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

# fzf
# https://github.com/junegunn/fzf

# Dependencies:
# – fd (https://github.com/sharkdp/fd)
# – bat (https://github.com/sharkdp/bat)

fd --type file . "$@" |
fzf --preview-window=down:60% --preview 'bat --style=numbers --color=always --line-range :500 {}' --prompt='(f)>' |
:edit