2013-10-23 05:26:55 +04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd `dirname $BASH_SOURCE`
|
2013-11-26 14:01:01 +04:00
|
|
|
fzf_base=`pwd`
|
2013-11-19 20:29:36 +04:00
|
|
|
|
|
|
|
# ruby executable
|
|
|
|
echo -n "Checking Ruby executable ... "
|
2013-11-26 14:01:01 +04:00
|
|
|
ruby=`which ruby`
|
2013-11-19 20:29:36 +04:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "ruby executable not found!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2014-01-29 06:04:07 +04:00
|
|
|
|
|
|
|
# System ruby is preferred
|
|
|
|
curses_check="begin; require 'curses'; rescue Exception; exit 1; end"
|
|
|
|
system_ruby=/usr/bin/ruby
|
|
|
|
if [ -x $system_ruby -a $system_ruby != "$ruby" ]; then
|
|
|
|
$system_ruby --disable-gems -e "$curses_check" 2> /dev/null
|
|
|
|
[ $? -eq 0 ] && ruby=$system_ruby
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "OK ($ruby)"
|
2013-11-19 20:29:36 +04:00
|
|
|
|
|
|
|
# Curses-support
|
|
|
|
echo -n "Checking Curses support ... "
|
2014-01-29 06:04:07 +04:00
|
|
|
"$ruby" -e "$curses_check"
|
2013-12-25 20:06:46 +04:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo "OK"
|
|
|
|
else
|
|
|
|
echo "Not found"
|
|
|
|
echo "Installing 'curses' gem ... "
|
2014-03-13 06:01:35 +04:00
|
|
|
/usr/bin/env gem install curses -v 1.0.0 --user-install
|
2013-12-25 20:06:46 +04:00
|
|
|
if [ $? -ne 0 ]; then
|
2014-03-13 06:01:35 +04:00
|
|
|
echo
|
2013-12-25 20:06:46 +04:00
|
|
|
echo "Failed to install 'curses' gem."
|
2014-03-13 06:01:35 +04:00
|
|
|
if [[ $(uname -r) =~ 'ARCH' ]]; then
|
|
|
|
echo "Make sure that base-devel package group is installed."
|
|
|
|
fi
|
2013-12-25 20:06:46 +04:00
|
|
|
exit 1
|
|
|
|
fi
|
2013-11-19 20:29:36 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Ruby version
|
|
|
|
echo -n "Checking Ruby version ... "
|
2014-01-29 06:04:07 +04:00
|
|
|
"$ruby" -e 'exit RUBY_VERSION >= "1.9"'
|
2013-11-19 20:29:36 +04:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo ">= 1.9"
|
2014-01-29 06:04:07 +04:00
|
|
|
"$ruby" --disable-gems -e "$curses_check"
|
2013-12-25 20:39:17 +04:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
fzf_cmd="$ruby --disable-gems $fzf_base/fzf"
|
|
|
|
else
|
|
|
|
fzf_cmd="$ruby $fzf_base/fzf"
|
|
|
|
fi
|
2013-11-19 20:29:36 +04:00
|
|
|
else
|
|
|
|
echo "< 1.9"
|
2013-11-26 14:01:01 +04:00
|
|
|
fzf_cmd="$ruby $fzf_base/fzf"
|
2013-11-19 20:29:36 +04:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Auto-completion
|
2013-11-26 14:05:20 +04:00
|
|
|
read -p "Do you want to add auto-completion support? ([y]/n) " -n 1 -r
|
2013-11-19 20:29:36 +04:00
|
|
|
echo
|
|
|
|
[[ ! $REPLY =~ ^[Nn]$ ]]
|
2013-11-26 14:01:01 +04:00
|
|
|
auto_completion=$?
|
2013-11-19 20:29:36 +04:00
|
|
|
|
2013-12-21 19:18:41 +04:00
|
|
|
# Key-bindings
|
|
|
|
read -p "Do you want to add key bindings? ([y]/n) " -n 1 -r
|
|
|
|
echo
|
|
|
|
[[ ! $REPLY =~ ^[Nn]$ ]]
|
|
|
|
key_bindings=$?
|
|
|
|
|
2013-11-19 20:29:36 +04:00
|
|
|
echo
|
|
|
|
for shell in bash zsh; do
|
2013-11-26 14:01:01 +04:00
|
|
|
echo -n "Generate ~/.fzf.$shell ... "
|
|
|
|
src=~/.fzf.${shell}
|
2013-11-19 20:29:36 +04:00
|
|
|
|
2013-11-26 14:01:01 +04:00
|
|
|
fzf_completion="source $fzf_base/fzf-completion.${shell}"
|
|
|
|
if [ $auto_completion -ne 0 ]; then
|
|
|
|
fzf_completion="# $fzf_completion"
|
2013-11-19 20:29:36 +04:00
|
|
|
fi
|
|
|
|
|
2013-11-26 14:01:01 +04:00
|
|
|
cat > $src << EOF
|
2013-12-21 19:18:41 +04:00
|
|
|
# Setup fzf function
|
|
|
|
# ------------------
|
2013-11-26 14:01:01 +04:00
|
|
|
unalias fzf 2> /dev/null
|
|
|
|
fzf() {
|
|
|
|
$fzf_cmd "\$@"
|
|
|
|
}
|
|
|
|
export -f fzf > /dev/null
|
2013-12-21 19:18:41 +04:00
|
|
|
|
|
|
|
# Auto-completion
|
|
|
|
# ---------------
|
2013-11-26 14:01:01 +04:00
|
|
|
$fzf_completion
|
|
|
|
|
|
|
|
EOF
|
2013-12-21 19:18:41 +04:00
|
|
|
|
|
|
|
if [ $key_bindings -eq 0 ]; then
|
|
|
|
if [ $shell = bash ]; then
|
2014-03-27 20:39:20 +04:00
|
|
|
cat >> $src << "EOFZF"
|
2013-12-21 19:18:41 +04:00
|
|
|
# Key bindings
|
|
|
|
# ------------
|
2014-02-14 20:29:16 +04:00
|
|
|
if [[ $- =~ i ]]; then
|
|
|
|
|
2014-03-27 20:39:20 +04:00
|
|
|
read -r -d '' __fsel <<'EOF'
|
2013-12-21 19:18:41 +04:00
|
|
|
find * -path '*/\.*' -prune \
|
|
|
|
-o -type f -print \
|
2014-02-07 13:41:05 +04:00
|
|
|
-o -type d -print \
|
2013-12-21 19:18:41 +04:00
|
|
|
-o -type l -print 2> /dev/null | fzf -m | while read item; do
|
|
|
|
printf '%q ' "$item"
|
|
|
|
done
|
|
|
|
echo
|
2014-03-27 20:39:20 +04:00
|
|
|
EOF
|
|
|
|
|
|
|
|
__fsel() {
|
|
|
|
eval "$__fsel"
|
|
|
|
}
|
|
|
|
|
|
|
|
__fsel_tmux() {
|
2014-03-28 12:15:32 +04:00
|
|
|
local height lines
|
|
|
|
height=${FZF_TMUX_HEIGHT:-40%}
|
|
|
|
lines=${LINES:-40}
|
|
|
|
if [[ $height =~ %$ ]]; then
|
|
|
|
height=${height:0:${#height}-1}
|
|
|
|
height=$(( height * lines / 100 ))
|
|
|
|
fi
|
|
|
|
tmux split-window -l $height "tmux send-keys -t $TMUX_PANE \"\$($__fsel)\""
|
2013-12-21 19:18:41 +04:00
|
|
|
}
|
|
|
|
|
2014-03-13 09:29:27 +04:00
|
|
|
__fcd() {
|
2014-03-14 12:46:55 +04:00
|
|
|
local dir
|
2014-03-14 12:53:23 +04:00
|
|
|
dir=$(find ${1:-*} -path '*/\.*' -prune -o -type d -print 2> /dev/null | fzf +m) && printf 'cd %q' "$dir"
|
2014-03-13 09:29:27 +04:00
|
|
|
}
|
|
|
|
|
2014-03-27 20:39:20 +04:00
|
|
|
__use_tmux=0
|
2014-03-28 12:15:32 +04:00
|
|
|
[ -n "$TMUX_PANE" -a ${FZF_TMUX:-1} -ne 0 -a ${LINES:-40} -gt 15 ] && __use_tmux=1
|
2014-03-27 20:39:20 +04:00
|
|
|
|
2014-03-04 13:53:29 +04:00
|
|
|
if [ -z "$(set -o | grep '^vi.*on')" ]; then
|
|
|
|
# Required to refresh the prompt after fzf
|
|
|
|
bind '"\er": redraw-current-line'
|
|
|
|
|
|
|
|
# CTRL-T - Paste the selected file path into the command line
|
2014-03-27 20:39:20 +04:00
|
|
|
if [ $__use_tmux -eq 1 ]; then
|
|
|
|
bind '"\C-t": " \C-u \C-a\C-k$(__fsel_tmux)\e\C-e\C-y\C-a\C-d\C-y\ey\C-h"'
|
|
|
|
else
|
|
|
|
bind '"\C-t": " \C-u \C-a\C-k$(__fsel)\e\C-e\C-y\C-a\C-y\ey\C-h\C-e\er"'
|
|
|
|
fi
|
2014-03-04 13:53:29 +04:00
|
|
|
|
|
|
|
# CTRL-R - Paste the selected command from history into the command line
|
|
|
|
bind '"\C-r": " \C-e\C-u$(HISTTIMEFORMAT= history | fzf +s | sed \"s/ *[0-9]* *//\")\e\C-e\er"'
|
2014-03-13 09:29:27 +04:00
|
|
|
|
|
|
|
# ALT-C - cd into the selected directory
|
|
|
|
bind '"\ec": " \C-e\C-u$(__fcd)\e\C-e\er\C-m"'
|
2014-03-04 13:53:29 +04:00
|
|
|
else
|
|
|
|
bind '"\C-x\C-e": shell-expand-line'
|
|
|
|
bind '"\C-x\C-r": redraw-current-line'
|
|
|
|
|
|
|
|
# CTRL-T - Paste the selected file path into the command line
|
|
|
|
# - FIXME: Selected items are attached to the end regardless of cursor position
|
2014-03-27 20:39:20 +04:00
|
|
|
if [ $__use_tmux -eq 1 ]; then
|
|
|
|
bind '"\C-t": "\e$a \eddi$(__fsel_tmux)\C-x\C-e\e0P$xa"'
|
|
|
|
else
|
|
|
|
bind '"\C-t": "\e$a \eddi$(__fsel)\C-x\C-e\e0Px$a \C-x\C-r"'
|
|
|
|
fi
|
2014-03-04 13:53:29 +04:00
|
|
|
|
|
|
|
# CTRL-R - Paste the selected command from history into the command line
|
|
|
|
bind '"\C-r": "\eddi$(HISTTIMEFORMAT= history | fzf +s | sed \"s/ *[0-9]* *//\")\C-x\C-e\e$a\C-x\C-r"'
|
2014-03-13 09:29:27 +04:00
|
|
|
|
|
|
|
# ALT-C - cd into the selected directory
|
|
|
|
bind '"\ec": "\eddi$(__fcd)\C-x\C-e\C-x\C-r\C-m"'
|
2014-03-04 13:53:29 +04:00
|
|
|
fi
|
2013-12-21 19:18:41 +04:00
|
|
|
|
2014-03-27 20:39:20 +04:00
|
|
|
unset __use_tmux
|
|
|
|
|
2014-02-14 20:29:16 +04:00
|
|
|
fi
|
2014-03-27 20:39:20 +04:00
|
|
|
EOFZF
|
2013-12-21 19:18:41 +04:00
|
|
|
else
|
2014-03-27 20:39:20 +04:00
|
|
|
cat >> $src << "EOFZF"
|
2013-12-21 19:18:41 +04:00
|
|
|
# Key bindings
|
|
|
|
# ------------
|
|
|
|
# CTRL-T - Paste the selected file path(s) into the command line
|
2014-03-27 20:39:20 +04:00
|
|
|
read -r -d '' __fsel <<'EOF'
|
|
|
|
find * -path '*/\.*' -prune \
|
2013-12-21 19:18:41 +04:00
|
|
|
-o -type f -print \
|
2014-02-07 13:41:05 +04:00
|
|
|
-o -type d -print \
|
2014-03-27 20:39:20 +04:00
|
|
|
-o -type l -print 2> /dev/null | fzf -m | while read item; do
|
|
|
|
printf '%q ' "$item"
|
|
|
|
done
|
|
|
|
echo
|
|
|
|
EOF
|
|
|
|
|
2014-03-28 12:15:32 +04:00
|
|
|
if [ -n "$TMUX_PANE" -a ${FZF_TMUX:-1} -ne 0 -a ${LINES:-40} -gt 15 ]; then
|
2014-03-27 20:39:20 +04:00
|
|
|
fzf-file-widget() {
|
2014-03-28 12:15:32 +04:00
|
|
|
local height lines
|
|
|
|
height=${FZF_TMUX_HEIGHT:-40%}
|
|
|
|
lines=${LINES:-40}
|
|
|
|
if [[ $height =~ %$ ]]; then
|
|
|
|
height=${height:0:${#height}-1}
|
|
|
|
height=$(( height * lines / 100 ))
|
|
|
|
fi
|
|
|
|
tmux split-window -l $height "tmux send-keys -t $TMUX_PANE \"\$($__fsel)\""
|
2014-03-27 20:39:20 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fzf-file-widget() {
|
|
|
|
LBUFFER="${LBUFFER%% #}$(eval "$__fsel")"
|
|
|
|
zle redisplay
|
|
|
|
}
|
|
|
|
fi
|
2013-12-21 19:18:41 +04:00
|
|
|
zle -N fzf-file-widget
|
|
|
|
bindkey '^T' fzf-file-widget
|
|
|
|
|
|
|
|
# ALT-C - cd into the selected directory
|
|
|
|
fzf-cd-widget() {
|
|
|
|
cd "${$(find * -path '*/\.*' -prune \
|
|
|
|
-o -type d -print 2> /dev/null | fzf):-.}"
|
|
|
|
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() {
|
2014-02-26 13:56:44 +04:00
|
|
|
LBUFFER=$(fc -l 1 | fzf +s | sed "s/ *[0-9]* *//")
|
2013-12-21 19:18:41 +04:00
|
|
|
zle redisplay
|
|
|
|
}
|
|
|
|
zle -N fzf-history-widget
|
|
|
|
bindkey '^R' fzf-history-widget
|
|
|
|
|
2014-03-27 20:39:20 +04:00
|
|
|
EOFZF
|
2013-12-21 19:18:41 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2013-11-26 14:01:01 +04:00
|
|
|
echo "OK"
|
|
|
|
done
|
|
|
|
|
|
|
|
echo
|
|
|
|
for shell in bash zsh; do
|
|
|
|
rc=~/.${shell}rc
|
|
|
|
src="source ~/.fzf.${shell}"
|
|
|
|
|
|
|
|
echo "Update $rc:"
|
|
|
|
echo " - $src"
|
2014-03-30 19:53:35 +04:00
|
|
|
line=$(grep -nF "$src" $rc | sed 's/:.*//')
|
|
|
|
if [ -n "$line" ]; then
|
|
|
|
echo " - Already exists (line #$line)"
|
2013-11-26 14:01:01 +04:00
|
|
|
else
|
|
|
|
echo $src >> $rc
|
|
|
|
echo " - Added"
|
2013-11-19 20:29:36 +04:00
|
|
|
fi
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
|
2013-11-29 08:42:13 +04:00
|
|
|
cat << EOF
|
2013-12-25 20:06:46 +04:00
|
|
|
Finished. Reload your .bashrc or .zshrc.
|
2013-12-25 20:54:29 +04:00
|
|
|
source ~/.bashrc # bash
|
|
|
|
source ~/.zshrc # zsh
|
2013-11-29 08:42:13 +04:00
|
|
|
|
|
|
|
To uninstall fzf, simply remove the added line.
|
2014-03-30 19:53:35 +04:00
|
|
|
|
|
|
|
For more information, see: https://github.com/junegunn/fzf
|
2013-11-29 08:42:13 +04:00
|
|
|
EOF
|
2013-10-23 05:26:55 +04:00
|
|
|
|