2013-11-19 16:29:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# ____ ____
|
|
|
|
# / __/___ / __/
|
|
|
|
# / /_/_ / / /_
|
|
|
|
# / __/ / /_/ __/
|
|
|
|
# /_/ /___/_/-completion.bash
|
|
|
|
#
|
2015-04-13 17:12:45 +00:00
|
|
|
# - $FZF_TMUX (default: 1)
|
|
|
|
# - $FZF_TMUX_HEIGHT (default: '40%')
|
2013-11-19 16:42:57 +00:00
|
|
|
# - $FZF_COMPLETION_TRIGGER (default: '**')
|
|
|
|
# - $FZF_COMPLETION_OPTS (default: empty)
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2014-07-17 15:22:49 +00:00
|
|
|
_fzf_orig_completion_filter() {
|
|
|
|
sed 's/.*-F *\([^ ]*\).* \([^ ]*\)$/export _fzf_orig_completion_\2=\1;/' |
|
|
|
|
sed 's/[^a-z0-9_= ;]/_/g'
|
|
|
|
}
|
|
|
|
|
2013-11-19 16:29:36 +00:00
|
|
|
_fzf_opts_completion() {
|
2015-04-16 05:20:29 +00:00
|
|
|
local cur prev opts
|
2013-11-19 16:29:36 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2015-04-16 05:20:29 +00:00
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
2014-07-14 03:48:31 +00:00
|
|
|
opts="
|
|
|
|
-x --extended
|
|
|
|
-e --extended-exact
|
|
|
|
-i +i
|
|
|
|
-n --nth
|
|
|
|
-d --delimiter
|
2015-03-06 01:42:38 +00:00
|
|
|
+s --no-sort
|
|
|
|
--tac
|
2015-04-16 05:20:29 +00:00
|
|
|
--tiebreak
|
2015-05-20 15:38:40 +00:00
|
|
|
--bind
|
2014-07-14 03:48:31 +00:00
|
|
|
-m --multi
|
|
|
|
--no-mouse
|
2015-04-23 13:43:48 +00:00
|
|
|
--color
|
2014-07-14 03:48:31 +00:00
|
|
|
--black
|
|
|
|
--reverse
|
2015-04-16 05:20:29 +00:00
|
|
|
--no-hscroll
|
2015-04-23 13:43:48 +00:00
|
|
|
--inline-info
|
2014-07-14 03:48:31 +00:00
|
|
|
--prompt
|
|
|
|
-q --query
|
|
|
|
-1 --select-1
|
|
|
|
-0 --exit-0
|
|
|
|
-f --filter
|
2015-03-06 01:42:38 +00:00
|
|
|
--print-query
|
2015-04-16 05:20:29 +00:00
|
|
|
--expect
|
|
|
|
--toggle-sort
|
2015-06-13 15:43:44 +00:00
|
|
|
--sync
|
2015-06-21 08:40:36 +00:00
|
|
|
--cycle
|
2015-06-13 15:43:44 +00:00
|
|
|
--history
|
2015-07-22 15:58:20 +00:00
|
|
|
--history-size
|
2015-09-15 10:04:53 +00:00
|
|
|
--header
|
2015-07-26 14:02:04 +00:00
|
|
|
--header-lines
|
|
|
|
--margin"
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2015-04-16 05:20:29 +00:00
|
|
|
case "${prev}" in
|
|
|
|
--tiebreak)
|
|
|
|
COMPREPLY=( $(compgen -W "length begin end index" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
;;
|
2015-04-23 13:43:48 +00:00
|
|
|
--color)
|
|
|
|
COMPREPLY=( $(compgen -W "dark light 16 bw" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
;;
|
2015-09-15 10:04:53 +00:00
|
|
|
--history)
|
2015-06-13 15:43:44 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
return 0
|
|
|
|
;;
|
2015-04-16 05:20:29 +00:00
|
|
|
esac
|
|
|
|
|
2013-11-19 16:29:36 +00:00
|
|
|
if [[ ${cur} =~ ^-|\+ ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2014-12-04 15:15:14 +00:00
|
|
|
_fzf_handle_dynamic_completion() {
|
2015-07-03 23:47:10 +00:00
|
|
|
local cmd orig ret orig_cmd
|
2014-12-04 15:15:14 +00:00
|
|
|
cmd="$1"
|
|
|
|
shift
|
2015-07-03 23:47:10 +00:00
|
|
|
orig_cmd="$1"
|
2014-12-04 15:15:14 +00:00
|
|
|
|
|
|
|
orig=$(eval "echo \$_fzf_orig_completion_$cmd")
|
|
|
|
if [ -n "$orig" ] && type "$orig" > /dev/null 2>&1; then
|
|
|
|
$orig "$@"
|
|
|
|
elif [ -n "$_fzf_completion_loader" ]; then
|
|
|
|
_completion_loader "$@"
|
|
|
|
ret=$?
|
2015-07-03 23:47:10 +00:00
|
|
|
eval $(complete | \grep "\-F.* $orig_cmd$" | _fzf_orig_completion_filter)
|
2014-12-04 15:15:14 +00:00
|
|
|
source $BASH_SOURCE
|
|
|
|
return $ret
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
__fzf_generic_path_completion() {
|
2015-04-13 15:59:45 +00:00
|
|
|
local cur base dir leftover matches trigger cmd fzf
|
2015-04-13 17:12:45 +00:00
|
|
|
[ ${FZF_TMUX:-1} -eq 1 ] && fzf="fzf-tmux -d ${FZF_TMUX_HEIGHT:-40%}" || fzf="fzf"
|
2014-07-03 15:08:37 +00:00
|
|
|
cmd=$(echo ${COMP_WORDS[0]} | sed 's/[^a-z0-9_=]/_/g')
|
2013-11-19 16:29:36 +00:00
|
|
|
COMPREPLY=()
|
2015-05-11 01:17:33 +00:00
|
|
|
trigger=${FZF_COMPLETION_TRIGGER-'**'}
|
2013-11-19 16:29:36 +00:00
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
2013-12-23 14:16:07 +00:00
|
|
|
if [[ ${cur} == *"$trigger" ]]; then
|
|
|
|
base=${cur:0:${#cur}-${#trigger}}
|
2013-11-19 16:29:36 +00:00
|
|
|
eval base=$base
|
|
|
|
|
2013-11-23 11:09:56 +00:00
|
|
|
dir="$base"
|
|
|
|
while [ 1 ]; do
|
|
|
|
if [ -z "$dir" -o -d "$dir" ]; then
|
|
|
|
leftover=${base/#"$dir"}
|
|
|
|
leftover=${leftover/#\/}
|
2013-11-23 11:37:53 +00:00
|
|
|
[ "$dir" = './' ] && dir=''
|
2013-11-26 16:00:23 +00:00
|
|
|
tput sc
|
2015-04-13 15:59:45 +00:00
|
|
|
matches=$(find -L "$dir"* $1 2> /dev/null | $fzf $FZF_COMPLETION_OPTS $2 -q "$leftover" | while read item; do
|
2015-03-04 03:59:23 +00:00
|
|
|
printf "%q$3 " "$item"
|
2013-11-23 11:09:56 +00:00
|
|
|
done)
|
|
|
|
matches=${matches% }
|
|
|
|
if [ -n "$matches" ]; then
|
|
|
|
COMPREPLY=( "$matches" )
|
2013-11-19 16:29:36 +00:00
|
|
|
else
|
2013-11-23 11:16:46 +00:00
|
|
|
COMPREPLY=( "$cur" )
|
2013-11-19 16:29:36 +00:00
|
|
|
fi
|
2013-11-26 16:00:23 +00:00
|
|
|
tput rc
|
2013-11-23 11:16:46 +00:00
|
|
|
return 0
|
2013-11-19 16:29:36 +00:00
|
|
|
fi
|
2013-11-23 11:09:56 +00:00
|
|
|
dir=$(dirname "$dir")
|
2013-11-23 11:37:53 +00:00
|
|
|
[[ "$dir" =~ /$ ]] || dir="$dir"/
|
2013-11-23 11:09:56 +00:00
|
|
|
done
|
2014-07-03 15:08:37 +00:00
|
|
|
else
|
2015-03-04 03:59:23 +00:00
|
|
|
shift
|
2014-07-03 15:08:37 +00:00
|
|
|
shift
|
|
|
|
shift
|
2014-12-04 15:15:14 +00:00
|
|
|
_fzf_handle_dynamic_completion "$cmd" "$@"
|
2013-11-19 16:29:36 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_feed_fifo() (
|
|
|
|
rm -f "$fifo"
|
|
|
|
mkfifo "$fifo"
|
|
|
|
cat <&0 > "$fifo" &
|
|
|
|
)
|
|
|
|
|
|
|
|
_fzf_complete() {
|
|
|
|
local fifo cur selected trigger cmd fzf
|
|
|
|
fifo="${TMPDIR:-/tmp}/fzf-complete-fifo-$$"
|
2015-04-13 17:12:45 +00:00
|
|
|
[ ${FZF_TMUX:-1} -eq 1 ] && fzf="fzf-tmux -d ${FZF_TMUX_HEIGHT:-40%}" || fzf="fzf"
|
2015-10-05 10:34:38 +00:00
|
|
|
|
2014-07-14 03:48:31 +00:00
|
|
|
cmd=$(echo ${COMP_WORDS[0]} | sed 's/[^a-z0-9_=]/_/g')
|
2015-05-11 01:17:33 +00:00
|
|
|
trigger=${FZF_COMPLETION_TRIGGER-'**'}
|
2014-07-14 03:48:31 +00:00
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [[ ${cur} == *"$trigger" ]]; then
|
|
|
|
cur=${cur:0:${#cur}-${#trigger}}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_feed_fifo "$fifo"
|
2014-07-14 03:48:31 +00:00
|
|
|
tput sc
|
2015-10-05 10:34:38 +00:00
|
|
|
selected=$(eval "cat '$fifo' | $fzf $FZF_COMPLETION_OPTS $1 -q '$cur'" | tr '\n' ' ')
|
|
|
|
selected=${selected% } # Strip trailing space not to repeat "-o nospace"
|
2014-07-14 03:48:31 +00:00
|
|
|
tput rc
|
2015-10-05 10:34:38 +00:00
|
|
|
rm -f "$fifo"
|
2014-07-14 03:48:31 +00:00
|
|
|
|
|
|
|
if [ -n "$selected" ]; then
|
|
|
|
COMPREPLY=("$selected")
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
shift
|
2014-12-04 15:15:14 +00:00
|
|
|
_fzf_handle_dynamic_completion "$cmd" "$@"
|
2014-07-14 03:48:31 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_path_completion() {
|
|
|
|
__fzf_generic_path_completion \
|
2013-11-20 03:28:41 +00:00
|
|
|
"-name .git -prune -o -name .svn -prune -o -type d -print -o -type f -print -o -type l -print" \
|
2015-03-04 03:59:23 +00:00
|
|
|
"-m" "" "$@"
|
2013-11-20 03:28:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_file_completion() {
|
2015-10-05 10:34:38 +00:00
|
|
|
__fzf_generic_path_completion \
|
2013-11-19 16:29:36 +00:00
|
|
|
"-name .git -prune -o -name .svn -prune -o -type f -print -o -type l -print" \
|
2015-03-04 03:59:23 +00:00
|
|
|
"-m" "" "$@"
|
2013-11-19 16:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_dir_completion() {
|
2015-10-05 10:34:38 +00:00
|
|
|
__fzf_generic_path_completion \
|
2013-11-19 16:29:36 +00:00
|
|
|
"-name .git -prune -o -name .svn -prune -o -type d -print" \
|
2015-03-04 03:59:23 +00:00
|
|
|
"" "/" "$@"
|
2013-11-19 16:29:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_kill() {
|
2013-11-29 14:42:00 +00:00
|
|
|
[ -n "${COMP_WORDS[COMP_CWORD]}" ] && return 1
|
|
|
|
|
2015-04-13 15:59:45 +00:00
|
|
|
local selected fzf
|
2015-04-13 17:12:45 +00:00
|
|
|
[ ${FZF_TMUX:-1} -eq 1 ] && fzf="fzf-tmux -d ${FZF_TMUX_HEIGHT:-40%}" || fzf="fzf"
|
2013-11-29 08:49:48 +00:00
|
|
|
tput sc
|
2015-04-13 15:59:45 +00:00
|
|
|
selected=$(ps -ef | sed 1d | $fzf -m $FZF_COMPLETION_OPTS | awk '{print $2}' | tr '\n' ' ')
|
2013-11-29 08:49:48 +00:00
|
|
|
tput rc
|
|
|
|
|
|
|
|
if [ -n "$selected" ]; then
|
|
|
|
COMPREPLY=( "$selected" )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_telnet() {
|
|
|
|
_fzf_complete '+m' "$@" < <(
|
|
|
|
\grep -v '^\s*\(#\|$\)' /etc/hosts | \grep -Fv '0.0.0.0' |
|
|
|
|
awk '{if (length($2) > 0) {print $2}}' | sort -u
|
|
|
|
)
|
2013-11-29 09:08:22 +00:00
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_ssh() {
|
|
|
|
_fzf_complete '+m' "$@" < <(
|
|
|
|
cat <(cat ~/.ssh/config /etc/ssh/ssh_config 2> /dev/null | \grep -i '^host' | \grep -v '*') \
|
|
|
|
<(\grep -v '^\s*\(#\|$\)' /etc/hosts | \grep -Fv '0.0.0.0') |
|
|
|
|
awk '{if (length($2) > 0) {print $2}}' | sort -u
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_complete_unset() {
|
|
|
|
_fzf_complete '-m' "$@" < <(
|
|
|
|
declare -xp | sed 's/=.*//' | sed 's/.* //'
|
|
|
|
)
|
2014-07-14 03:48:31 +00:00
|
|
|
}
|
2013-12-22 11:42:11 +00:00
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_export() {
|
|
|
|
_fzf_complete '-m' "$@" < <(
|
2015-10-04 16:10:00 +00:00
|
|
|
declare -xp | sed 's/=.*//' | sed 's/.* //'
|
2015-10-05 10:34:38 +00:00
|
|
|
)
|
2014-07-14 03:48:31 +00:00
|
|
|
}
|
2013-12-22 11:42:11 +00:00
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_unalias() {
|
|
|
|
_fzf_complete '-m' "$@" < <(
|
2015-10-04 16:10:00 +00:00
|
|
|
alias | sed 's/=.*//' | sed 's/.* //'
|
2015-10-05 10:34:38 +00:00
|
|
|
)
|
2013-12-22 11:42:11 +00:00
|
|
|
}
|
|
|
|
|
2014-07-03 15:08:37 +00:00
|
|
|
# fzf options
|
2015-06-13 15:43:44 +00:00
|
|
|
complete -o default -F _fzf_opts_completion fzf
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2014-07-03 15:08:37 +00:00
|
|
|
d_cmds="cd pushd rmdir"
|
|
|
|
f_cmds="
|
|
|
|
awk cat diff diff3
|
|
|
|
emacs ex file ftp g++ gcc gvim head hg java
|
|
|
|
javac ld less more mvim patch perl python ruby
|
|
|
|
sed sftp sort source tail tee uniq vi view vim wc"
|
|
|
|
a_cmds="
|
|
|
|
basename bunzip2 bzip2 chmod chown curl cp dirname du
|
|
|
|
find git grep gunzip gzip hg jar
|
|
|
|
ln ls mv open rm rsync scp
|
|
|
|
svn tar unzip zip"
|
2014-07-14 03:48:31 +00:00
|
|
|
x_cmds="kill ssh telnet unset unalias export"
|
2014-07-03 15:08:37 +00:00
|
|
|
|
|
|
|
# Preserve existing completion
|
2015-05-20 15:38:40 +00:00
|
|
|
if [ "$_fzf_completion_loaded" != '0.9.12' ]; then
|
2014-07-03 15:08:37 +00:00
|
|
|
# Really wish I could use associative array but OSX comes with bash 3.2 :(
|
2014-09-14 04:53:53 +00:00
|
|
|
eval $(complete | \grep '\-F' | \grep -v _fzf_ |
|
|
|
|
\grep -E " ($(echo $d_cmds $f_cmds $a_cmds $x_cmds | sed 's/ /|/g' | sed 's/+/\\+/g'))$" | _fzf_orig_completion_filter)
|
2015-05-20 15:38:40 +00:00
|
|
|
export _fzf_completion_loaded=0.9.12
|
2014-07-17 15:22:49 +00:00
|
|
|
fi
|
|
|
|
|
2014-07-17 15:25:01 +00:00
|
|
|
if type _completion_loader > /dev/null 2>&1; then
|
2014-07-17 15:22:49 +00:00
|
|
|
_fzf_completion_loader=1
|
2014-07-03 15:08:37 +00:00
|
|
|
fi
|
|
|
|
|
2013-11-20 03:28:41 +00:00
|
|
|
# Directory
|
2014-07-03 15:08:37 +00:00
|
|
|
for cmd in $d_cmds; do
|
2015-03-04 04:03:54 +00:00
|
|
|
complete -F _fzf_dir_completion -o nospace -o plusdirs $cmd
|
2013-11-19 16:29:36 +00:00
|
|
|
done
|
|
|
|
|
2013-11-20 03:28:41 +00:00
|
|
|
# File
|
2014-07-03 15:08:37 +00:00
|
|
|
for cmd in $f_cmds; do
|
2013-11-21 02:38:14 +00:00
|
|
|
complete -F _fzf_file_completion -o default -o bashdefault $cmd
|
2013-11-20 03:28:41 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
# Anything
|
2014-07-03 15:08:37 +00:00
|
|
|
for cmd in $a_cmds; do
|
2015-10-05 10:34:38 +00:00
|
|
|
complete -F _fzf_path_completion -o default -o bashdefault $cmd
|
2013-11-20 03:28:41 +00:00
|
|
|
done
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2013-11-29 08:49:48 +00:00
|
|
|
# Kill completion
|
2015-10-05 10:34:38 +00:00
|
|
|
complete -F _fzf_complete_kill -o nospace -o default -o bashdefault kill
|
2013-11-29 08:49:48 +00:00
|
|
|
|
2013-11-29 09:08:22 +00:00
|
|
|
# Host completion
|
2015-10-05 10:34:38 +00:00
|
|
|
complete -F _fzf_complete_ssh -o default -o bashdefault ssh
|
|
|
|
complete -F _fzf_complete_telnet -o default -o bashdefault telnet
|
2013-11-29 09:08:22 +00:00
|
|
|
|
2014-07-14 03:48:31 +00:00
|
|
|
# Environment variables / Aliases
|
2015-10-05 10:34:38 +00:00
|
|
|
complete -F _fzf_complete_unset -o default -o bashdefault unset
|
|
|
|
complete -F _fzf_complete_export -o default -o bashdefault export
|
|
|
|
complete -F _fzf_complete_unalias -o default -o bashdefault unalias
|
2014-07-14 03:48:31 +00:00
|
|
|
|
|
|
|
unset cmd d_cmds f_cmds a_cmds x_cmds
|