zoxide/templates/bash.txt

138 lines
3.5 KiB
Plaintext
Raw Normal View History

2021-04-09 00:05:42 +05:30
{%- let section = "# =============================================================================\n#" -%}
{%- let not_configured = "# -- not configured --" -%}
2020-10-18 14:52:13 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# Utility functions for zoxide.
#
# pwd based on the value of _ZO_RESOLVE_SYMLINKS.
function __zoxide_pwd() {
{%- if resolve_symlinks %}
2021-01-29 01:12:31 +05:30
\builtin pwd -P
2020-10-18 14:52:13 +05:30
{%- else %}
2021-01-29 01:12:31 +05:30
\builtin pwd -L
2020-10-18 14:52:13 +05:30
{%- endif %}
}
# cd + custom logic based on the value of _ZO_ECHO.
function __zoxide_cd() {
# shellcheck disable=SC2164
2021-01-29 01:12:31 +05:30
\builtin cd "$@" {%- if echo %} && __zoxide_pwd {%- endif %}
2020-10-18 14:52:13 +05:30
}
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# Hook configuration for zoxide.
#
2021-04-29 01:23:43 +05:30
{# 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 14:52:13 +05:30
# Hook to add new entries to the database.
{%- match hook %}
2021-05-04 02:42:43 +05:30
{%- when InitHook::None %}
2021-04-09 00:05:42 +05:30
{{ not_configured }}
2020-10-18 14:52:13 +05:30
2021-05-04 02:42:43 +05:30
{%- when InitHook::Prompt %}
2020-10-18 14:52:13 +05:30
function __zoxide_hook() {
2021-04-29 01:23:43 +05:30
\builtin local -r __zoxide_retval="$?"
zoxide add -- "$(__zoxide_pwd)"
2021-04-29 01:23:43 +05:30
return "${__zoxide_retval}"
2020-10-18 14:52:13 +05:30
}
2021-05-04 02:42:43 +05:30
{%- when InitHook::Pwd %}
2020-10-18 14:52:13 +05:30
function __zoxide_hook() {
2021-04-29 01:23:43 +05:30
\builtin local -r __zoxide_retval="$?"
2021-01-29 01:12:31 +05:30
\builtin local -r __zoxide_pwd_tmp="$(__zoxide_pwd)"
2020-11-11 18:23:37 +05:30
if [ -z "${__zoxide_pwd_old}" ]; then
__zoxide_pwd_old="${__zoxide_pwd_tmp}"
elif [ "${__zoxide_pwd_old}" != "${__zoxide_pwd_tmp}" ]; then
__zoxide_pwd_old="${__zoxide_pwd_tmp}"
zoxide add -- "${__zoxide_pwd_old}"
2020-10-18 14:52:13 +05:30
fi
2021-04-29 01:23:43 +05:30
return "${__zoxide_retval}"
2020-10-18 14:52:13 +05:30
}
2021-04-09 00:05:42 +05:30
2020-10-18 14:52:13 +05:30
{%- endmatch %}
2021-04-29 01:23:43 +05:30
{# bash throws an error if $PROMPT_COMMAND contains two semicolons in sequence.
# This is hard to avoid perfectly, but adding __zoxide_hook to the front of
# $PROMPT_COMMAND rather than the back makes this scenario unlikely. -#}
2020-10-18 14:52:13 +05:30
# Initialize hook.
if [ "${__zoxide_hooked}" != '1' ]; then
__zoxide_hooked='1'
2021-05-04 02:42:43 +05:30
{%- if hook == InitHook::None %}
2021-04-09 00:05:42 +05:30
{{ not_configured }}
{%- else %}
PROMPT_COMMAND="__zoxide_hook;${PROMPT_COMMAND:+${PROMPT_COMMAND}}"
2021-04-09 00:05:42 +05:30
{%- endif %}
fi
2020-10-18 14:52:13 +05:30
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# 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 18:23:37 +05:30
if [ -n "${OLDPWD}" ]; then
__zoxide_cd "${OLDPWD}"
2020-10-18 14:52:13 +05:30
else
2020-11-11 18:23:37 +05:30
# shellcheck disable=SC2016
\builtin printf 'zoxide: $OLDPWD is not set\n'
2020-10-18 14:52:13 +05:30
return 1
fi
2020-11-11 00:41:26 +05:30
elif [ "$#" -eq 1 ] && [ -d "$1" ]; then
__zoxide_cd "$1"
2020-10-18 14:52:13 +05:30
else
2021-01-29 01:12:31 +05:30
\builtin local __zoxide_result
__zoxide_result="$(zoxide query --exclude "$(__zoxide_pwd)" -- "$@")" && __zoxide_cd "${__zoxide_result}"
2020-10-18 14:52:13 +05:30
fi
}
# Jump to a directory using interactive search.
function __zoxide_zi() {
2021-01-29 01:12:31 +05:30
\builtin local __zoxide_result
2020-11-11 18:23:37 +05:30
__zoxide_result="$(zoxide query -i -- "$@")" && __zoxide_cd "${__zoxide_result}"
2020-10-18 14:52:13 +05:30
}
2021-04-09 00:05:42 +05:30
{{ section }}
2020-10-18 14:52:13 +05:30
# Convenient aliases for zoxide. Disable these using --no-aliases.
#
{%- match cmd %}
{%- when Some with (cmd) %}
# Remove definitions.
function __zoxide_unset() {
# shellcheck disable=SC1001
2021-03-01 11:40:10 +05:30
\builtin unset -f "$@" &>/dev/null
# shellcheck disable=SC1001
2021-03-01 11:40:10 +05:30
\builtin unset -v "$@" &>/dev/null
}
__zoxide_unset '{{cmd}}'
function {{cmd}}() {
__zoxide_z "$@"
}
__zoxide_unset '{{cmd}}i'
function {{cmd}}i() {
__zoxide_zi "$@"
}
2020-10-18 14:52:13 +05:30
{%- when None %}
2021-04-09 00:05:42 +05:30
{{ not_configured }}
2020-10-18 14:52:13 +05:30
{%- endmatch %}
2021-04-09 00:05:42 +05:30
{{ section }}
2021-04-27 17:37:38 +05:30
# To initialize zoxide, add this to your configuration (usually ~/.bashrc):
2020-10-18 14:52:13 +05:30
#
# eval "$(zoxide init bash)"