2013-11-19 16:29:36 +00:00
|
|
|
# ____ ____
|
|
|
|
# / __/___ / __/
|
|
|
|
# / /_/_ / / /_
|
|
|
|
# / __/ / /_/ __/
|
2020-03-31 13:18:09 +00:00
|
|
|
# /_/ /___/_/ completion.bash
|
2013-11-19 16:29:36 +00:00
|
|
|
#
|
2017-01-07 16:30:31 +00:00
|
|
|
# - $FZF_TMUX (default: 0)
|
2020-03-31 13:18:09 +00:00
|
|
|
# - $FZF_TMUX_OPTS (default: empty)
|
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
|
|
|
|
2023-10-08 16:19:28 +00:00
|
|
|
[[ $- =~ i ]] || return 0
|
|
|
|
|
2019-02-28 07:13:59 +00:00
|
|
|
|
2016-01-19 16:09:58 +00:00
|
|
|
# To use custom commands instead of find, override _fzf_compgen_{path,dir}
|
2023-10-02 12:02:35 +00:00
|
|
|
if ! declare -F _fzf_compgen_path > /dev/null; then
|
2016-01-19 16:09:58 +00:00
|
|
|
_fzf_compgen_path() {
|
|
|
|
echo "$1"
|
2016-07-06 16:40:14 +00:00
|
|
|
command find -L "$1" \
|
2019-12-05 13:27:04 +00:00
|
|
|
-name .git -prune -o -name .hg -prune -o -name .svn -prune -o \( -type d -o -type f -o -type l \) \
|
2016-01-19 16:09:58 +00:00
|
|
|
-a -not -path "$1" -print 2> /dev/null | sed 's@^\./@@'
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2023-10-02 12:02:35 +00:00
|
|
|
if ! declare -F _fzf_compgen_dir > /dev/null; then
|
2016-01-19 16:09:58 +00:00
|
|
|
_fzf_compgen_dir() {
|
2016-07-06 16:40:14 +00:00
|
|
|
command find -L "$1" \
|
2019-12-05 13:27:04 +00:00
|
|
|
-name .git -prune -o -name .hg -prune -o -name .svn -prune -o -type d \
|
2016-01-19 16:09:58 +00:00
|
|
|
-a -not -path "$1" -print 2> /dev/null | sed 's@^\./@@'
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
|
2017-01-07 16:30:31 +00:00
|
|
|
# To redraw line after fzf closes (printf '\e[5n')
|
2021-11-03 14:26:25 +00:00
|
|
|
bind '"\e[0n": redraw-current-line' 2> /dev/null
|
2017-01-07 16:30:31 +00:00
|
|
|
|
2020-02-19 15:28:16 +00:00
|
|
|
__fzf_comprun() {
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ "$(type -t _fzf_comprun 2>&1)" = function ]]; then
|
2020-02-19 15:28:16 +00:00
|
|
|
_fzf_comprun "$@"
|
2022-10-16 08:15:19 +00:00
|
|
|
elif [[ -n "${TMUX_PANE-}" ]] && { [[ "${FZF_TMUX:-0}" != 0 ]] || [[ -n "${FZF_TMUX_OPTS-}" ]]; }; then
|
2020-02-19 15:28:16 +00:00
|
|
|
shift
|
2020-03-31 13:18:09 +00:00
|
|
|
fzf-tmux ${FZF_TMUX_OPTS:--d${FZF_TMUX_HEIGHT:-40%}} -- "$@"
|
2020-02-19 15:28:16 +00:00
|
|
|
else
|
|
|
|
shift
|
|
|
|
fzf "$@"
|
|
|
|
fi
|
2017-01-07 16:30:31 +00:00
|
|
|
}
|
|
|
|
|
2020-11-11 14:44:47 +00:00
|
|
|
__fzf_orig_completion() {
|
|
|
|
local l comp f cmd
|
|
|
|
while read -r l; do
|
|
|
|
if [[ "$l" =~ ^(.*\ -F)\ *([^ ]*).*\ ([^ ]*)$ ]]; then
|
|
|
|
comp="${BASH_REMATCH[1]}"
|
|
|
|
f="${BASH_REMATCH[2]}"
|
|
|
|
cmd="${BASH_REMATCH[3]}"
|
2020-11-13 15:59:29 +00:00
|
|
|
[[ "$f" = _fzf_* ]] && continue
|
2020-11-11 14:59:21 +00:00
|
|
|
printf -v "_fzf_orig_completion_${cmd//[^A-Za-z0-9_]/_}" "%s" "${comp} %s ${cmd} #${f}"
|
2022-10-16 08:15:19 +00:00
|
|
|
if [[ "$l" = *" -o nospace "* ]] && [[ ! "${__fzf_nospace_commands-}" = *" $cmd "* ]]; then
|
|
|
|
__fzf_nospace_commands="${__fzf_nospace_commands-} $cmd "
|
2020-11-11 14:44:47 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
2014-07-17 15:22:49 +00:00
|
|
|
}
|
|
|
|
|
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
|
2015-11-03 13:49:32 +00:00
|
|
|
-e --exact
|
2017-01-07 16:30:31 +00:00
|
|
|
--algo
|
2014-07-14 03:48:31 +00:00
|
|
|
-i +i
|
|
|
|
-n --nth
|
2017-01-07 16:30:31 +00:00
|
|
|
--with-nth
|
2014-07-14 03:48:31 +00:00
|
|
|
-d --delimiter
|
2015-03-06 01:42:38 +00:00
|
|
|
+s --no-sort
|
|
|
|
--tac
|
2015-04-16 05:20:29 +00:00
|
|
|
--tiebreak
|
2014-07-14 03:48:31 +00:00
|
|
|
-m --multi
|
|
|
|
--no-mouse
|
2017-01-07 16:30:31 +00:00
|
|
|
--bind
|
|
|
|
--cycle
|
2015-04-16 05:20:29 +00:00
|
|
|
--no-hscroll
|
2017-01-07 16:30:31 +00:00
|
|
|
--jump-labels
|
|
|
|
--height
|
2017-01-15 04:22:09 +00:00
|
|
|
--literal
|
2017-01-07 16:30:31 +00:00
|
|
|
--reverse
|
|
|
|
--margin
|
2015-04-23 13:43:48 +00:00
|
|
|
--inline-info
|
2014-07-14 03:48:31 +00:00
|
|
|
--prompt
|
2020-02-17 01:19:03 +00:00
|
|
|
--pointer
|
|
|
|
--marker
|
2017-01-07 16:30:31 +00:00
|
|
|
--header
|
|
|
|
--header-lines
|
|
|
|
--ansi
|
|
|
|
--tabstop
|
|
|
|
--color
|
|
|
|
--no-bold
|
|
|
|
--history
|
|
|
|
--history-size
|
|
|
|
--preview
|
|
|
|
--preview-window
|
2014-07-14 03:48:31 +00:00
|
|
|
-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
|
2017-01-07 16:30:31 +00:00
|
|
|
--sync"
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2015-04-16 05:20:29 +00:00
|
|
|
case "${prev}" in
|
|
|
|
--tiebreak)
|
2016-03-02 14:59:42 +00:00
|
|
|
COMPREPLY=( $(compgen -W "length begin end index" -- "$cur") )
|
2015-04-16 05:20:29 +00:00
|
|
|
return 0
|
|
|
|
;;
|
2015-04-23 13:43:48 +00:00
|
|
|
--color)
|
2016-03-02 14:59:42 +00:00
|
|
|
COMPREPLY=( $(compgen -W "dark light 16 bw" -- "$cur") )
|
2015-04-23 13:43:48 +00:00
|
|
|
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
|
|
|
|
|
2016-03-02 14:59:42 +00:00
|
|
|
if [[ "$cur" =~ ^-|\+ ]]; then
|
|
|
|
COMPREPLY=( $(compgen -W "${opts}" -- "$cur") )
|
2013-11-19 16:29:36 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2014-12-04 15:15:14 +00:00
|
|
|
_fzf_handle_dynamic_completion() {
|
2017-12-02 18:06:10 +00:00
|
|
|
local cmd orig_var orig ret orig_cmd orig_complete
|
2014-12-04 15:15:14 +00:00
|
|
|
cmd="$1"
|
|
|
|
shift
|
2015-07-03 23:47:10 +00:00
|
|
|
orig_cmd="$1"
|
2015-10-11 15:27:30 +00:00
|
|
|
orig_var="_fzf_orig_completion_$cmd"
|
2022-10-16 08:15:19 +00:00
|
|
|
orig="${!orig_var-}"
|
|
|
|
orig="${orig##*#}"
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ -n "$orig" ]] && type "$orig" > /dev/null 2>&1; then
|
2014-12-04 15:15:14 +00:00
|
|
|
$orig "$@"
|
2022-10-16 08:15:19 +00:00
|
|
|
elif [[ -n "${_fzf_completion_loader-}" ]]; then
|
2019-04-30 17:35:51 +00:00
|
|
|
orig_complete=$(complete -p "$orig_cmd" 2> /dev/null)
|
2014-12-04 15:15:14 +00:00
|
|
|
_completion_loader "$@"
|
|
|
|
ret=$?
|
2017-12-02 18:06:10 +00:00
|
|
|
# _completion_loader may not have updated completion for the command
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ "$(complete -p "$orig_cmd" 2> /dev/null)" != "$orig_complete" ]]; then
|
2020-11-11 14:44:47 +00:00
|
|
|
__fzf_orig_completion < <(complete -p "$orig_cmd" 2> /dev/null)
|
2022-10-16 08:15:19 +00:00
|
|
|
if [[ "${__fzf_nospace_commands-}" = *" $orig_cmd "* ]]; then
|
2018-02-15 02:56:07 +00:00
|
|
|
eval "${orig_complete/ -F / -o nospace -F }"
|
|
|
|
else
|
|
|
|
eval "$orig_complete"
|
|
|
|
fi
|
2017-12-02 18:06:10 +00:00
|
|
|
fi
|
2014-12-04 15:15:14 +00:00
|
|
|
return $ret
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
__fzf_generic_path_completion() {
|
2020-02-19 15:28:16 +00:00
|
|
|
local cur base dir leftover matches trigger cmd
|
2022-07-29 12:50:59 +00:00
|
|
|
cmd="${COMP_WORDS[0]}"
|
|
|
|
if [[ $cmd == \\* ]]; then
|
|
|
|
cmd="${cmd:1}"
|
|
|
|
fi
|
|
|
|
cmd="${cmd//[^A-Za-z0-9_=]/_}"
|
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]}"
|
2023-10-03 11:04:56 +00:00
|
|
|
if [[ "$cur" == *"$trigger" ]] && [[ $cur != *'$('* ]] && [[ $cur != *':='* ]] && [[ $cur != *'`'* ]]; then
|
2013-12-23 14:16:07 +00:00
|
|
|
base=${cur:0:${#cur}-${#trigger}}
|
2023-10-03 11:04:56 +00:00
|
|
|
eval "base=$base" 2> /dev/null || return
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2022-10-16 08:15:19 +00:00
|
|
|
dir=
|
2018-06-02 01:40:33 +00:00
|
|
|
[[ $base = *"/"* ]] && dir="$base"
|
2016-03-02 14:59:42 +00:00
|
|
|
while true; do
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ -z "$dir" ]] || [[ -d "$dir" ]]; then
|
2013-11-23 11:09:56 +00:00
|
|
|
leftover=${base/#"$dir"}
|
|
|
|
leftover=${leftover/#\/}
|
2021-08-14 11:33:21 +00:00
|
|
|
[[ -z "$dir" ]] && dir='.'
|
|
|
|
[[ "$dir" != "/" ]] && dir="${dir/%\//}"
|
2023-09-19 04:39:57 +00:00
|
|
|
matches=$(eval "$1 $(printf %q "$dir")" | FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --scheme=path --bind=ctrl-z:ignore ${FZF_DEFAULT_OPTS-} ${FZF_COMPLETION_OPTS-} $2" __fzf_comprun "$4" -q "$leftover" | while read -r item; do
|
2022-08-22 13:29:51 +00:00
|
|
|
printf "%q " "${item%$3}$3"
|
2013-11-23 11:09:56 +00:00
|
|
|
done)
|
2017-07-31 05:08:17 +00:00
|
|
|
matches=${matches% }
|
2022-10-16 08:15:19 +00:00
|
|
|
[[ -z "$3" ]] && [[ "${__fzf_nospace_commands-}" = *" ${COMP_WORDS[0]} "* ]] && matches="$matches "
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ -n "$matches" ]]; then
|
2013-11-23 11:09:56 +00:00
|
|
|
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
|
2017-01-07 16:30:31 +00:00
|
|
|
printf '\e[5n'
|
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_complete() {
|
2020-03-11 09:29:39 +00:00
|
|
|
# Split arguments around --
|
|
|
|
local args rest str_arg i sep
|
|
|
|
args=("$@")
|
|
|
|
sep=
|
|
|
|
for i in "${!args[@]}"; do
|
|
|
|
if [[ "${args[$i]}" = -- ]]; then
|
|
|
|
sep=$i
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [[ -n "$sep" ]]; then
|
|
|
|
str_arg=
|
|
|
|
rest=("${args[@]:$((sep + 1)):${#args[@]}}")
|
|
|
|
args=("${args[@]:0:$sep}")
|
|
|
|
else
|
|
|
|
str_arg=$1
|
|
|
|
args=()
|
|
|
|
shift
|
|
|
|
rest=("$@")
|
|
|
|
fi
|
|
|
|
|
2020-02-19 15:28:16 +00:00
|
|
|
local cur selected trigger cmd post
|
2016-01-28 16:28:51 +00:00
|
|
|
post="$(caller 0 | awk '{print $2}')_post"
|
2016-03-02 14:59:42 +00:00
|
|
|
type -t "$post" > /dev/null 2>&1 || post=cat
|
2015-10-05 10:34:38 +00:00
|
|
|
|
2016-09-24 19:39:13 +00:00
|
|
|
cmd="${COMP_WORDS[0]//[^A-Za-z0-9_=]/_}"
|
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]}"
|
2023-10-03 11:04:56 +00:00
|
|
|
if [[ "$cur" == *"$trigger" ]] && [[ $cur != *'$('* ]] && [[ $cur != *':='* ]] && [[ $cur != *'`'* ]]; then
|
2014-07-14 03:48:31 +00:00
|
|
|
cur=${cur:0:${#cur}-${#trigger}}
|
|
|
|
|
2022-10-16 08:15:19 +00:00
|
|
|
selected=$(FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse --bind=ctrl-z:ignore ${FZF_DEFAULT_OPTS-} ${FZF_COMPLETION_OPTS-} $str_arg" __fzf_comprun "${rest[0]}" "${args[@]}" -q "$cur" | $post | tr '\n' ' ')
|
2015-10-05 10:34:38 +00:00
|
|
|
selected=${selected% } # Strip trailing space not to repeat "-o nospace"
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ -n "$selected" ]]; then
|
2014-07-14 03:48:31 +00:00
|
|
|
COMPREPLY=("$selected")
|
2019-09-29 05:45:58 +00:00
|
|
|
else
|
|
|
|
COMPREPLY=("$cur")
|
2014-07-14 03:48:31 +00:00
|
|
|
fi
|
2019-09-29 05:45:58 +00:00
|
|
|
printf '\e[5n'
|
|
|
|
return 0
|
2014-07-14 03:48:31 +00:00
|
|
|
else
|
2020-03-11 09:29:39 +00:00
|
|
|
_fzf_handle_dynamic_completion "$cmd" "${rest[@]}"
|
2014-07-14 03:48:31 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_path_completion() {
|
2017-07-31 05:08:17 +00:00
|
|
|
__fzf_generic_path_completion _fzf_compgen_path "-m" "" "$@"
|
2013-11-20 03:28:41 +00:00
|
|
|
}
|
|
|
|
|
2016-01-19 16:09:58 +00:00
|
|
|
# Deprecated. No file only completion.
|
2013-11-20 03:28:41 +00:00
|
|
|
_fzf_file_completion() {
|
2016-01-19 16:09:58 +00:00
|
|
|
_fzf_path_completion "$@"
|
2013-11-19 16:29:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_dir_completion() {
|
2017-07-31 05:08:17 +00:00
|
|
|
__fzf_generic_path_completion _fzf_compgen_dir "" "/" "$@"
|
2013-11-19 16:29:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-05 10:34:38 +00:00
|
|
|
_fzf_complete_kill() {
|
2020-04-17 15:51:06 +00:00
|
|
|
_fzf_proc_completion "$@"
|
|
|
|
}
|
2013-11-29 08:49:48 +00:00
|
|
|
|
2020-04-17 15:51:06 +00:00
|
|
|
_fzf_proc_completion() {
|
2023-04-01 10:52:34 +00:00
|
|
|
_fzf_complete -m --header-lines=1 --preview 'echo {}' --preview-window down:3:wrap --min-height 15 -- "$@" < <(
|
|
|
|
command ps -eo user,pid,ppid,start,time,command 2> /dev/null ||
|
|
|
|
command ps -eo user,pid,ppid,time,args # For BusyBox
|
2020-04-17 15:51:06 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
_fzf_proc_completion_post() {
|
|
|
|
awk '{print $2}'
|
2013-11-29 08:49:48 +00:00
|
|
|
}
|
|
|
|
|
2023-09-17 15:15:04 +00:00
|
|
|
__fzf_list_hosts() {
|
|
|
|
command cat <(command tail -n +1 ~/.ssh/config ~/.ssh/config.d/* /etc/ssh/ssh_config 2> /dev/null | command grep -i '^\s*host\(name\)\? ' | awk '{for (i = 2; i <= NF; i++) print $1 " " $i}' | command grep -v '[*?%]') \
|
|
|
|
<(command grep -oE '^[[a-z0-9.,:-]+' ~/.ssh/known_hosts | tr ',' '\n' | tr -d '[' | awk '{ print $1 " " $1 }') \
|
|
|
|
<(command grep -v '^\s*\(#\|$\)' /etc/hosts | command grep -Fv '0.0.0.0') |
|
|
|
|
awk -v "user=$1" '{if (length($2) > 0) {print user $2}}' | sort -u
|
|
|
|
}
|
|
|
|
|
2019-12-20 09:39:22 +00:00
|
|
|
_fzf_host_completion() {
|
2023-09-17 15:15:04 +00:00
|
|
|
_fzf_complete +m -- "$@" < <(__fzf_list_hosts "")
|
|
|
|
}
|
|
|
|
|
|
|
|
# Values for $1 $2 $3 are described here
|
|
|
|
# https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion.html
|
|
|
|
# > the first argument ($1) is the name of the command whose arguments are being completed,
|
|
|
|
# > the second argument ($2) is the word being completed,
|
|
|
|
# > and the third argument ($3) is the word preceding the word being completed on the current command line.
|
|
|
|
_fzf_complete_ssh() {
|
|
|
|
case $3 in
|
|
|
|
-i|-F|-E)
|
|
|
|
_fzf_path_completion "$@"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
local user=
|
|
|
|
[[ "$2" =~ '@' ]] && user="${2%%@*}@"
|
|
|
|
_fzf_complete +m -- "$@" < <(__fzf_list_hosts "$user")
|
|
|
|
;;
|
|
|
|
esac
|
2015-10-05 10:34:38 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 09:39:22 +00:00
|
|
|
_fzf_var_completion() {
|
2020-03-11 09:29:39 +00:00
|
|
|
_fzf_complete -m -- "$@" < <(
|
2022-09-10 02:38:41 +00:00
|
|
|
declare -xp | sed -En 's|^declare [^ ]+ ([^=]+).*|\1|p'
|
2015-10-05 10:34:38 +00:00
|
|
|
)
|
2014-07-14 03:48:31 +00:00
|
|
|
}
|
2013-12-22 11:42:11 +00:00
|
|
|
|
2019-12-20 09:39:22 +00:00
|
|
|
_fzf_alias_completion() {
|
2020-03-11 09:29:39 +00:00
|
|
|
_fzf_complete -m -- "$@" < <(
|
2022-09-10 02:38:41 +00:00
|
|
|
alias | sed -En 's|^alias ([^=]+).*|\1|p'
|
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
|
2022-07-15 06:53:23 +00:00
|
|
|
# fzf-tmux is a thin fzf wrapper that has only a few more options than fzf
|
|
|
|
# itself. As a quick improvement we take fzf's completion. Adding the few extra
|
|
|
|
# fzf-tmux specific options (like `-w WIDTH`) are left as a future patch.
|
|
|
|
complete -o default -F _fzf_opts_completion fzf-tmux
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2016-01-19 16:09:58 +00:00
|
|
|
d_cmds="${FZF_COMPLETION_DIR_COMMANDS:-cd pushd rmdir}"
|
|
|
|
a_cmds="
|
2023-03-27 03:21:37 +00:00
|
|
|
awk bat cat diff diff3
|
2023-01-22 17:21:04 +00:00
|
|
|
emacs emacsclient ex file ftp g++ gcc gvim head hg hx java
|
2015-11-06 13:22:35 +00:00
|
|
|
javac ld less more mvim nvim patch perl python ruby
|
2016-01-19 16:09:58 +00:00
|
|
|
sed sftp sort source tail tee uniq vi view vim wc xdg-open
|
2014-07-03 15:08:37 +00:00
|
|
|
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"
|
|
|
|
|
|
|
|
# Preserve existing completion
|
2020-11-11 14:44:47 +00:00
|
|
|
__fzf_orig_completion < <(complete -p $d_cmds $a_cmds 2> /dev/null)
|
2014-07-17 15:22:49 +00:00
|
|
|
|
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
|
|
|
|
|
2019-08-09 02:11:29 +00:00
|
|
|
__fzf_defc() {
|
2016-04-23 00:12:15 +00:00
|
|
|
local cmd func opts orig_var orig def
|
2015-10-11 15:27:30 +00:00
|
|
|
cmd="$1"
|
|
|
|
func="$2"
|
|
|
|
opts="$3"
|
2016-09-24 19:39:13 +00:00
|
|
|
orig_var="_fzf_orig_completion_${cmd//[^A-Za-z0-9_]/_}"
|
2022-10-16 08:15:19 +00:00
|
|
|
orig="${!orig_var-}"
|
2021-08-14 11:33:21 +00:00
|
|
|
if [[ -n "$orig" ]]; then
|
2016-04-23 00:12:15 +00:00
|
|
|
printf -v def "$orig" "$func"
|
|
|
|
eval "$def"
|
2015-10-11 15:27:30 +00:00
|
|
|
else
|
|
|
|
complete -F "$func" $opts "$cmd"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2013-11-20 03:28:41 +00:00
|
|
|
# Anything
|
2014-07-03 15:08:37 +00:00
|
|
|
for cmd in $a_cmds; do
|
2019-08-09 02:11:29 +00:00
|
|
|
__fzf_defc "$cmd" _fzf_path_completion "-o default -o bashdefault"
|
2013-11-20 03:28:41 +00:00
|
|
|
done
|
2013-11-19 16:29:36 +00:00
|
|
|
|
2016-01-19 16:09:58 +00:00
|
|
|
# Directory
|
|
|
|
for cmd in $d_cmds; do
|
2019-08-09 02:11:29 +00:00
|
|
|
__fzf_defc "$cmd" _fzf_dir_completion "-o nospace -o dirnames"
|
2016-01-19 16:09:58 +00:00
|
|
|
done
|
|
|
|
|
2023-09-17 15:15:04 +00:00
|
|
|
# ssh
|
|
|
|
__fzf_defc ssh _fzf_complete_ssh "-o default -o bashdefault"
|
|
|
|
|
2020-04-17 17:51:02 +00:00
|
|
|
unset cmd d_cmds a_cmds
|
2019-02-28 07:13:59 +00:00
|
|
|
|
2019-08-08 06:35:52 +00:00
|
|
|
_fzf_setup_completion() {
|
2019-08-09 02:11:29 +00:00
|
|
|
local kind fn cmd
|
|
|
|
kind=$1
|
|
|
|
fn=_fzf_${1}_completion
|
|
|
|
if [[ $# -lt 2 ]] || ! type -t "$fn" > /dev/null; then
|
2020-04-17 15:51:06 +00:00
|
|
|
echo "usage: ${FUNCNAME[0]} path|dir|var|alias|host|proc COMMANDS..."
|
2019-08-08 06:35:52 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
shift
|
2020-11-11 14:44:47 +00:00
|
|
|
__fzf_orig_completion < <(complete -p "$@" 2> /dev/null)
|
2019-08-08 06:35:52 +00:00
|
|
|
for cmd in "$@"; do
|
2019-08-09 02:11:29 +00:00
|
|
|
case "$kind" in
|
2019-12-20 09:39:22 +00:00
|
|
|
dir) __fzf_defc "$cmd" "$fn" "-o nospace -o dirnames" ;;
|
|
|
|
var) __fzf_defc "$cmd" "$fn" "-o default -o nospace -v" ;;
|
|
|
|
alias) __fzf_defc "$cmd" "$fn" "-a" ;;
|
|
|
|
*) __fzf_defc "$cmd" "$fn" "-o default -o bashdefault" ;;
|
2019-08-09 02:11:29 +00:00
|
|
|
esac
|
2019-08-08 06:35:52 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2022-07-21 13:16:19 +00:00
|
|
|
# Environment variables / Aliases / Hosts / Process
|
2023-02-12 07:58:36 +00:00
|
|
|
_fzf_setup_completion 'var' export unset printenv
|
2019-12-20 09:39:22 +00:00
|
|
|
_fzf_setup_completion 'alias' unalias
|
2023-09-17 15:15:04 +00:00
|
|
|
_fzf_setup_completion 'host' telnet
|
2022-07-21 13:16:19 +00:00
|
|
|
_fzf_setup_completion 'proc' kill
|