zoxide/templates/posix.txt

121 lines
2.6 KiB
Plaintext
Raw Normal View History

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.
__zoxide_pwd() {
{%- if resolve_symlinks %}
2021-01-28 19:42:31 +00:00
\pwd -P
2020-10-18 09:22:13 +00:00
{%- else %}
2021-01-28 19:42:31 +00:00
\pwd -L
2020-10-18 09:22:13 +00:00
{%- endif %}
}
# cd + custom logic based on the value of _ZO_ECHO.
__zoxide_cd() {
# shellcheck disable=SC2164
2021-01-28 19:42:31 +00:00
\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.
#
# 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
__zoxide_hook() {
zoxide add -- "$(__zoxide_pwd)"
2020-10-18 09:22:13 +00:00
}
2021-05-03 21:12:43 +00:00
{%- when InitHook::Pwd %}
2021-04-08 18:35:42 +00:00
{{ not_configured }}
2020-10-18 09:22:13 +00:00
{%- endmatch %}
# Initialize hook.
if [ "${__zoxide_hooked}" != '1' ]; then
__zoxide_hooked='1'
2021-04-08 18:35:42 +00:00
{%- match hook %}
2021-05-03 21:12:43 +00:00
{%- when InitHook::None %}
2021-04-08 18:35:42 +00:00
{{ not_configured }}
2021-05-03 21:12:43 +00:00
{%- when InitHook::Prompt %}
PS1="${PS1}\$(__zoxide_hook)"
2021-05-03 21:12:43 +00:00
{%- when InitHook::Pwd %}
\printf "%s\n%s\n" \
"zoxide: PWD hooks are not supported on POSIX shells." \
2021-03-13 21:34:30 +00:00
" Use 'zoxide init posix --hook prompt' instead."
2021-04-08 18:35:42 +00:00
{%- endmatch %}
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.
__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
\printf 'zoxide: $OLDPWD is not set'
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
__zoxide_cd "$1"
2020-10-18 09:22:13 +00:00
else
__zoxide_result="$(zoxide query --exclude "$(__zoxide_pwd)" -- "$@")" && __zoxide_cd "${__zoxide_result}"
2020-10-18 09:22:13 +00:00
fi
}
# Jump to a directory using interactive search.
__zoxide_zi() {
2020-11-11 12:53:37 +00:00
__zoxide_result="$(zoxide query -i -- "$@")" && __zoxide_cd "${__zoxide_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) %}
# Remove definitions.
__zoxide_unset() {
# shellcheck disable=SC1001
2021-03-01 06:10:10 +00:00
\unset -f "$@" >/dev/null 2>&1
# shellcheck disable=SC1001
2021-03-01 06:10:10 +00:00
\unset -v "$@" >/dev/null 2>&1
}
__zoxide_unset '{{cmd}}'
{{cmd}}() {
__zoxide_z "$@"
}
__zoxide_unset '{{cmd}}i'
{{cmd}}i() {
__zoxide_zi "$@"
}
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:
2020-10-18 09:22:13 +00:00
#
# eval "$(zoxide init posix --hook prompt)"