2013-11-19 16:29:36 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# ____ ____
|
|
|
|
# / __/___ / __/
|
|
|
|
# / /_/_ / / /_
|
|
|
|
# / __/ / /_/ __/
|
|
|
|
# /_/ /___/_/-completion.bash
|
|
|
|
#
|
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
|
|
|
|
|
|
|
_fzf_opts_completion() {
|
|
|
|
local cur prev opts
|
|
|
|
COMPREPLY=()
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
opts="-m --multi -x --extended -s --sort +s +i +c --no-color"
|
|
|
|
|
|
|
|
case "${prev}" in
|
|
|
|
--sort|-s)
|
|
|
|
COMPREPLY=( $(compgen -W "$(seq 2000 1000 10000)" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if [[ ${cur} =~ ^-|\+ ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_generic_completion() {
|
2013-11-29 14:42:00 +00:00
|
|
|
local cur base dir leftover matches
|
2013-11-19 16:29:36 +00:00
|
|
|
COMPREPLY=()
|
|
|
|
FZF_COMPLETION_TRIGGER=${FZF_COMPLETION_TRIGGER:-**}
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [[ ${cur} == *"$FZF_COMPLETION_TRIGGER" ]]; then
|
|
|
|
base=${cur:0:${#cur}-${#FZF_COMPLETION_TRIGGER}}
|
|
|
|
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
|
2013-11-23 11:09:56 +00:00
|
|
|
matches=$(find "$dir"* $1 2> /dev/null | fzf $FZF_COMPLETION_OPTS $2 -q "$leftover" | while read item; do
|
2013-11-26 16:00:23 +00:00
|
|
|
printf '%q ' "$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
|
2013-11-19 16:29:36 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_all_completion() {
|
2013-11-20 03:28:41 +00:00
|
|
|
_fzf_generic_completion \
|
|
|
|
"-name .git -prune -o -name .svn -prune -o -type d -print -o -type f -print -o -type l -print" \
|
|
|
|
"-m"
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_file_completion() {
|
2013-11-19 16:29:36 +00:00
|
|
|
_fzf_generic_completion \
|
|
|
|
"-name .git -prune -o -name .svn -prune -o -type f -print -o -type l -print" \
|
|
|
|
"-m"
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_dir_completion() {
|
|
|
|
_fzf_generic_completion \
|
|
|
|
"-name .git -prune -o -name .svn -prune -o -type d -print" \
|
|
|
|
""
|
|
|
|
}
|
|
|
|
|
2013-11-29 08:49:48 +00:00
|
|
|
_fzf_kill_completion() {
|
2013-11-29 14:42:00 +00:00
|
|
|
[ -n "${COMP_WORDS[COMP_CWORD]}" ] && return 1
|
|
|
|
|
2013-11-29 08:49:48 +00:00
|
|
|
local selected
|
|
|
|
tput sc
|
2013-11-29 08:53:30 +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
|
|
|
|
}
|
|
|
|
|
2013-11-29 09:08:22 +00:00
|
|
|
_fzf_host_completion() {
|
2013-11-29 14:42:00 +00:00
|
|
|
local cur prev selected
|
|
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
|
|
[ "$cur" = '-l' -o "$prev" = '-l' ] && return 1
|
2013-11-29 09:08:22 +00:00
|
|
|
|
|
|
|
tput sc
|
2013-11-29 14:42:00 +00:00
|
|
|
selected=$(grep -v '^\s*\(#\|$\)' /etc/hosts | awk '{print $2}' | sort -u | fzf $FZF_COMPLETION_OPTS -q "$cur")
|
2013-11-29 09:08:22 +00:00
|
|
|
tput rc
|
|
|
|
|
|
|
|
if [ -n "$selected" ]; then
|
2013-11-29 14:42:00 +00:00
|
|
|
COMPREPLY=("$selected")
|
2013-11-29 09:08:22 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-11-19 16:29:36 +00:00
|
|
|
complete -F _fzf_opts_completion fzf
|
|
|
|
|
2013-11-20 03:28:41 +00:00
|
|
|
# Directory
|
2013-11-19 16:29:36 +00:00
|
|
|
for cmd in "cd pushd rmdir"; do
|
2013-11-21 02:38:14 +00:00
|
|
|
complete -F _fzf_dir_completion -o default -o bashdefault $cmd
|
2013-11-19 16:29:36 +00:00
|
|
|
done
|
|
|
|
|
2013-11-20 03:28:41 +00:00
|
|
|
# File
|
|
|
|
for cmd in "
|
|
|
|
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"; 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
|
|
|
|
for cmd in "
|
|
|
|
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"; do
|
2013-11-21 02:38:14 +00:00
|
|
|
complete -F _fzf_all_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
|
|
|
|
complete -F _fzf_kill_completion -o nospace -o default -o bashdefault kill
|
|
|
|
|
2013-11-29 09:08:22 +00:00
|
|
|
# Host completion
|
|
|
|
for cmd in "ssh telnet"; do
|
|
|
|
complete -F _fzf_host_completion -o default -o bashdefault $cmd
|
|
|
|
done
|
|
|
|
|