2021-04-08 18:35:42 +00:00
|
|
|
{%- let section = "# =============================================================================\n#" -%}
|
|
|
|
{%- let not_configured = "# -- not configured --" -%}
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ section }}
|
2020-10-18 09:22:13 +00:00
|
|
|
# Utility functions for zoxide.
|
|
|
|
#
|
|
|
|
|
|
|
|
# pwd based on the value of _ZO_RESOLVE_SYMLINKS.
|
|
|
|
function __zoxide_pwd() {
|
|
|
|
{%- if resolve_symlinks %}
|
2021-01-28 19:42:31 +00:00
|
|
|
\builtin pwd -P
|
2020-10-18 09:22:13 +00:00
|
|
|
{%- else %}
|
2021-01-28 19:42:31 +00:00
|
|
|
\builtin pwd -L
|
2020-10-18 09:22:13 +00:00
|
|
|
{%- endif %}
|
|
|
|
}
|
|
|
|
|
|
|
|
# cd + custom logic based on the value of _ZO_ECHO.
|
|
|
|
function __zoxide_cd() {
|
|
|
|
# shellcheck disable=SC2164
|
2021-01-28 19:42:31 +00:00
|
|
|
\builtin cd "$@" {%- if echo %} && __zoxide_pwd {%- endif %}
|
2020-10-18 09:22:13 +00:00
|
|
|
}
|
|
|
|
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ section }}
|
2020-10-18 09:22:13 +00:00
|
|
|
# Hook configuration for zoxide.
|
|
|
|
#
|
|
|
|
|
2021-04-28 19:53:43 +00:00
|
|
|
{# Custom prompts often use "$?" to show the exit status of the previous
|
|
|
|
# command. Adding __zoxide_hook to the front of $PROMPT_COMMAND would change
|
|
|
|
# the exit status, so we must capture it and return it manually instead. -#}
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
# Hook to add new entries to the database.
|
|
|
|
{%- match hook %}
|
2021-05-03 21:12:43 +00:00
|
|
|
{%- when InitHook::None %}
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ not_configured }}
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2021-05-03 21:12:43 +00:00
|
|
|
{%- when InitHook::Prompt %}
|
2020-10-18 09:22:13 +00:00
|
|
|
function __zoxide_hook() {
|
2021-09-04 10:31:50 +00:00
|
|
|
\builtin local -r retval="$?"
|
2021-04-04 14:36:44 +00:00
|
|
|
zoxide add -- "$(__zoxide_pwd)"
|
2021-09-04 10:31:50 +00:00
|
|
|
return "${retval}"
|
2020-10-18 09:22:13 +00:00
|
|
|
}
|
|
|
|
|
2021-05-03 21:12:43 +00:00
|
|
|
{%- when InitHook::Pwd %}
|
2020-10-18 09:22:13 +00:00
|
|
|
function __zoxide_hook() {
|
2021-09-04 10:31:50 +00:00
|
|
|
\builtin local -r retval="$?"
|
|
|
|
\builtin local -r pwd_tmp="$(__zoxide_pwd)"
|
2020-11-11 12:53:37 +00:00
|
|
|
if [ -z "${__zoxide_pwd_old}" ]; then
|
2021-09-04 10:31:50 +00:00
|
|
|
__zoxide_pwd_old="${pwd_tmp}"
|
|
|
|
elif [ "${__zoxide_pwd_old}" != "${pwd_tmp}" ]; then
|
|
|
|
__zoxide_pwd_old="${pwd_tmp}"
|
2021-04-04 14:36:44 +00:00
|
|
|
zoxide add -- "${__zoxide_pwd_old}"
|
2020-10-18 09:22:13 +00:00
|
|
|
fi
|
2021-09-04 10:31:50 +00:00
|
|
|
return "${retval}"
|
2020-10-18 09:22:13 +00:00
|
|
|
}
|
2021-04-08 18:35:42 +00:00
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
{%- endmatch %}
|
|
|
|
|
2021-09-04 10:31:50 +00:00
|
|
|
{# $PROMPT_COMMAND cannot contain two semicolons in sequence. It can end with a
|
|
|
|
# semicolon, but it cannot start with one. Therefore, always put the hook
|
|
|
|
# at the start of $PROMPT_COMMAND. -#}
|
2021-04-28 19:53:43 +00:00
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
# Initialize hook.
|
2021-03-06 12:55:13 +00:00
|
|
|
if [ "${__zoxide_hooked}" != '1' ]; then
|
|
|
|
__zoxide_hooked='1'
|
2021-05-03 21:12:43 +00:00
|
|
|
{%- if hook == InitHook::None %}
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ not_configured }}
|
|
|
|
{%- else %}
|
2021-07-21 17:52:57 +00:00
|
|
|
if [ -z "${PROMPT_COMMAND}" ]; then
|
|
|
|
PROMPT_COMMAND='__zoxide_hook'
|
|
|
|
else
|
|
|
|
PROMPT_COMMAND="__zoxide_hook;${PROMPT_COMMAND#;}"
|
|
|
|
fi
|
2021-04-08 18:35:42 +00:00
|
|
|
{%- endif %}
|
2021-03-06 12:55:13 +00:00
|
|
|
fi
|
2020-10-18 09:22:13 +00:00
|
|
|
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ section }}
|
2020-10-18 09:22:13 +00:00
|
|
|
# When using zoxide with --no-aliases, alias these internal functions as
|
|
|
|
# desired.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Jump to a directory using only keywords.
|
|
|
|
function __zoxide_z() {
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
|
|
__zoxide_cd ~
|
|
|
|
elif [ "$#" -eq 1 ] && [ "$1" = '-' ]; then
|
2020-11-11 12:53:37 +00:00
|
|
|
if [ -n "${OLDPWD}" ]; then
|
|
|
|
__zoxide_cd "${OLDPWD}"
|
2020-10-18 09:22:13 +00:00
|
|
|
else
|
2020-11-11 12:53:37 +00:00
|
|
|
# shellcheck disable=SC2016
|
2021-03-06 12:55:13 +00:00
|
|
|
\builtin printf 'zoxide: $OLDPWD is not set\n'
|
2020-10-18 09:22:13 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2020-11-10 19:11:26 +00:00
|
|
|
elif [ "$#" -eq 1 ] && [ -d "$1" ]; then
|
2020-10-26 17:55:04 +00:00
|
|
|
__zoxide_cd "$1"
|
2020-10-18 09:22:13 +00:00
|
|
|
else
|
2021-09-04 10:31:50 +00:00
|
|
|
\builtin local result
|
|
|
|
result="$(zoxide query --exclude "$(__zoxide_pwd)" -- "$@")" && __zoxide_cd "${result}"
|
2020-10-18 09:22:13 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Jump to a directory using interactive search.
|
|
|
|
function __zoxide_zi() {
|
2021-09-04 10:31:50 +00:00
|
|
|
\builtin local result
|
|
|
|
result="$(zoxide query -i -- "$@")" && __zoxide_cd "${result}"
|
2020-10-18 09:22:13 +00:00
|
|
|
}
|
|
|
|
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ section }}
|
2020-10-18 09:22:13 +00:00
|
|
|
# Convenient aliases for zoxide. Disable these using --no-aliases.
|
|
|
|
#
|
|
|
|
|
|
|
|
{%- match cmd %}
|
|
|
|
{%- when Some with (cmd) %}
|
|
|
|
|
2020-10-24 14:53:10 +00:00
|
|
|
# Remove definitions.
|
|
|
|
function __zoxide_unset() {
|
2021-03-01 06:10:10 +00:00
|
|
|
\builtin unset -f "$@" &>/dev/null
|
|
|
|
\builtin unset -v "$@" &>/dev/null
|
2021-07-20 21:09:18 +00:00
|
|
|
\builtin unalias "$@" &>/dev/null || \builtin :
|
2020-10-24 14:53:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__zoxide_unset '{{cmd}}'
|
|
|
|
function {{cmd}}() {
|
|
|
|
__zoxide_z "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
__zoxide_unset '{{cmd}}i'
|
|
|
|
function {{cmd}}i() {
|
|
|
|
__zoxide_zi "$@"
|
|
|
|
}
|
|
|
|
|
2021-09-04 10:31:50 +00:00
|
|
|
# Load completions.
|
|
|
|
{# This requires line editing. Since Bash supports only two modes of line
|
|
|
|
# editing (`vim` and `emacs`), we check if one of them is enabled. -#}
|
|
|
|
if [[ :"${SHELLOPTS}": =~ :(vi|emacs): ]] && [ "${TERM}" != 'dumb' ]; then
|
|
|
|
{# Use `printf '\e[5n'` to redraw line after fzf closes. -#}
|
|
|
|
\builtin bind '"\e[0n": redraw-current-line' &>/dev/null
|
|
|
|
|
|
|
|
function __zoxide_z_complete() {
|
|
|
|
[ {{ "${#COMP_WORDS[@]}" }} -eq 2 ] || return
|
|
|
|
|
|
|
|
\builtin local -r trigger='**'
|
|
|
|
\builtin local query="${COMP_WORDS[1]}"
|
|
|
|
|
|
|
|
if [[ ${query} == *"${trigger}" ]]; then
|
|
|
|
query="${query:0:$(({{ "${#query} - ${#trigger}" }}))}"
|
|
|
|
COMPREPLY=("$(_ZO_FZF_OPTS="\
|
|
|
|
--bind=ctrl-z:ignore \
|
|
|
|
--exit-0 \
|
|
|
|
--height=35% \
|
|
|
|
--inline-info \
|
|
|
|
--no-sort \
|
|
|
|
--reverse \
|
|
|
|
--select-1 \
|
|
|
|
" zoxide query -i -- "${query}")")
|
|
|
|
\builtin printf '\e[5n'
|
|
|
|
else
|
|
|
|
\builtin mapfile -t COMPREPLY < <(compgen -A directory -S / -- "${query}")
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
\builtin complete -F __zoxide_z_complete -o nospace -- '{{cmd}}'
|
|
|
|
fi
|
|
|
|
|
2020-10-18 09:22:13 +00:00
|
|
|
{%- when None %}
|
2021-04-08 18:35:42 +00:00
|
|
|
|
|
|
|
{{ not_configured }}
|
2020-10-18 09:22:13 +00:00
|
|
|
|
|
|
|
{%- endmatch %}
|
|
|
|
|
2021-04-08 18:35:42 +00:00
|
|
|
{{ section }}
|
2021-04-27 12:07:38 +00:00
|
|
|
# To initialize zoxide, add this to your configuration (usually ~/.bashrc):
|
2020-10-18 09:22:13 +00:00
|
|
|
#
|
|
|
|
# eval "$(zoxide init bash)"
|