2015-03-13 00:08:42 -04:00
|
|
|
# Key bindings
|
|
|
|
# ------------
|
2015-10-01 15:18:10 -04:00
|
|
|
if [[ $- == *i* ]]; then
|
2015-06-25 11:14:36 -04:00
|
|
|
|
2015-03-13 00:08:42 -04:00
|
|
|
# CTRL-T - Paste the selected file path(s) into the command line
|
|
|
|
__fsel() {
|
2015-11-07 10:11:46 -05:00
|
|
|
local cmd="${FZF_CTRL_T_COMMAND:-"command find -L . \\( -path '*/\\.*' -o -fstype 'dev' -o -fstype 'proc' \\) -prune \
|
2015-03-13 00:08:42 -04:00
|
|
|
-o -type f -print \
|
|
|
|
-o -type d -print \
|
2015-06-25 12:00:58 -04:00
|
|
|
-o -type l -print 2> /dev/null | sed 1d | cut -b3-"}"
|
|
|
|
eval "$cmd" | $(__fzfcmd) -m | while read item; do
|
2015-03-13 00:08:42 -04:00
|
|
|
printf '%q ' "$item"
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
2015-04-21 11:55:39 -04:00
|
|
|
__fzfcmd() {
|
|
|
|
[ ${FZF_TMUX:-1} -eq 1 ] && echo "fzf-tmux -d${FZF_TMUX_HEIGHT:-40%}" || echo "fzf"
|
|
|
|
}
|
|
|
|
|
2015-04-21 11:30:09 -04:00
|
|
|
fzf-file-widget() {
|
|
|
|
LBUFFER="${LBUFFER}$(__fsel)"
|
|
|
|
zle redisplay
|
|
|
|
}
|
2015-03-13 00:08:42 -04:00
|
|
|
zle -N fzf-file-widget
|
|
|
|
bindkey '^T' fzf-file-widget
|
|
|
|
|
|
|
|
# ALT-C - cd into the selected directory
|
|
|
|
fzf-cd-widget() {
|
2015-11-07 10:11:46 -05:00
|
|
|
local cmd="${FZF_ALT_C_COMMAND:-"command find -L . \\( -path '*/\\.*' -o -fstype 'dev' -o -fstype 'proc' \\) -prune \
|
|
|
|
-o -type d -print 2> /dev/null | sed 1d | cut -b3-"}"
|
|
|
|
cd "${$(eval "$cmd" | $(__fzfcmd) +m):-.}"
|
2015-03-13 00:08:42 -04:00
|
|
|
zle reset-prompt
|
|
|
|
}
|
|
|
|
zle -N fzf-cd-widget
|
|
|
|
bindkey '\ec' fzf-cd-widget
|
|
|
|
|
|
|
|
# CTRL-R - Paste the selected command from history into the command line
|
|
|
|
fzf-history-widget() {
|
2015-11-04 07:55:35 -05:00
|
|
|
local selected num
|
2015-11-08 22:06:10 -05:00
|
|
|
selected=( $(fc -l 1 | $(__fzfcmd) +s --tac +m -n2..,.. --tiebreak=index --toggle-sort=ctrl-r -q "${LBUFFER//$/\\$}") )
|
2015-11-03 20:52:44 -05:00
|
|
|
if [ -n "$selected" ]; then
|
2015-06-20 18:44:27 -04:00
|
|
|
num=$selected[1]
|
2015-04-23 09:39:07 -04:00
|
|
|
if [ -n "$num" ]; then
|
2015-06-20 18:44:27 -04:00
|
|
|
zle vi-fetch-history -n $num
|
2015-04-23 09:31:23 -04:00
|
|
|
fi
|
2015-03-13 00:08:42 -04:00
|
|
|
fi
|
|
|
|
zle redisplay
|
|
|
|
}
|
|
|
|
zle -N fzf-history-widget
|
|
|
|
bindkey '^R' fzf-history-widget
|
|
|
|
|
|
|
|
fi
|
|
|
|
|