You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Feed the output of fd into fzf
fd --type f | fzf
# Setting fd as the default source for fzf
export FZF_DEFAULT_COMMAND='fd --type f'# Now fzf (w/o pipe) will use fd instead of find
fzf
# To apply the command to CTRL-T as well
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
# Press F1 to open the file with less without leaving fzf# Press CTRL-Y to copy the line to clipboard and aborts fzf (requires pbcopy)
fzf --bind 'f1:execute(less -f {}),ctrl-y:execute-silent(echo {} | pbcopy)+abort'```### [1] reload list of processes (or newest logs)```ps1
FZF_DEFAULT_COMMAND='ps -ef' \
fzf --bind 'ctrl-r:reload($FZF_DEFAULT_COMMAND)' \
--header 'Press CTRL-R to reload'--header-lines=1 \
--height=50%--layout=reverse
config themes from
.json
, see: fzf web color pickerhotkeys bind -> reload
--preview
https://github.com/junegunn/fzf#preview-windowfzf/advanced.md
reload action/event
built in hotkeys
Preview
Using Ignore
Examples
https://github.com/junegunn/fzf#2-switch-between-sources-by-pressing-ctrl-d-or-ctrl-f
[0] execute external background process
[2] toggle modes, inline, using hotkeys
[3] interactive ripgrep
Links
The text was updated successfully, but these errors were encountered: