aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/zshfzf
blob: ff6e0615d3153ac361a286bf87f84d0a80bb3906 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
source <(fzf --zsh)

fzf_widget() {
  BUFFER=$(fd | fzf --multi --scheme=path\
      --preview 'preview {} $FZF_PREVIEW_LINES' --preview-label='File Preview')
  CURSOR=$#BUFFER
  zle redisplay
}
zle -N fzf_widget

bindkey '^f' fzf_widget