2023-11-09 03:57:36 +00:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
BASE_0="$(basename ${0#-})"
|
|
|
|
BASE_SHELL="$(basename "$SHELL")"
|
|
|
|
|
|
|
|
if [[ "$1" == "--force" ]]; then
|
|
|
|
[[ -e ~/.local/bin/fzf ]] && rm ~/.local/bin/fzf
|
|
|
|
[[ -e ~/.local/share/lib/fzf ]] && rm -fR ~/.local/share/lib/fzf
|
|
|
|
unset fzf
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$(type -t fzf)" || ! -e "$(type -p fzf)" ]]; then
|
2023-11-09 04:05:04 +00:00
|
|
|
curl -sS https://webi.sh/fzf | bash >&2
|
2023-11-09 03:57:36 +00:00
|
|
|
|
|
|
|
printf '%s\n' \
|
|
|
|
'Run the following and then try again:' \
|
|
|
|
' exec $SHELL -l' \
|
2023-11-09 04:05:04 +00:00
|
|
|
'' >&2
|
2023-11-09 03:57:36 +00:00
|
|
|
elif [[ -z "${BASE_0}" || "${BASE_0}" == "$BASE_SHELL" ]]; then
|
|
|
|
|
|
|
|
FZF_CTRL_T_COMMAND="command find -L . -xdev -mindepth 1 \\( \
|
|
|
|
-path '*/\\.*' \
|
|
|
|
-xdev \
|
|
|
|
-o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \
|
|
|
|
\\) -prune \
|
|
|
|
-o -type f -print \
|
|
|
|
-o -type d -print \
|
|
|
|
-o -type l -print 2> /dev/null | cut -b3- \
|
|
|
|
"
|
|
|
|
|
|
|
|
FZF_ALT_C_COMMAND="command find -L . -xdev -mindepth 1 \\( \
|
|
|
|
-path '*/\\.*' \
|
|
|
|
-xdev \
|
|
|
|
-o -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \
|
|
|
|
\\) -prune \
|
|
|
|
-o -type d
|
|
|
|
-print 2> /dev/null | cut -b3- \
|
|
|
|
"
|
|
|
|
|
|
|
|
SRCPATH="$HOME/.local/share/lib/fzf"
|
|
|
|
mkdir -p "$SRCPATH"
|
|
|
|
source_code_from() {
|
|
|
|
local SRCCODE="$SRCPATH/${1}"
|
|
|
|
[[ -r "$SRCCODE" ]] \
|
|
|
|
|| curl -sSLo "$SRCCODE" \
|
|
|
|
"https://raw.githubusercontent.com/junegunn/fzf/master/shell/${1}" \
|
|
|
|
&& cat "$SRCCODE"
|
|
|
|
}
|
|
|
|
. <( source_code_from key-bindings.bash )
|
|
|
|
. <( source_code_from completion.bash )
|
|
|
|
unset SRCPATH
|
|
|
|
elif [[ "$1" == '-' ]]; then
|
|
|
|
cat "${BASH_SOURCE[0]}"
|
|
|
|
else
|
|
|
|
SCRIPT_NAME="$BASE_0"
|
|
|
|
printf '%s\n' \
|
|
|
|
"It seems $SCRIPT_NAME was invoked as a script. It should be sourced instead." \
|
|
|
|
'The easiest way is to call it like this:' \
|
|
|
|
" $ . <( $SCRIPT_NAME - ) # Note the '-' after the script's name" \
|
|
|
|
''
|
|
|
|
fi
|