zoxide/templates/posix.txt

107 lines
2.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.
__zoxide_pwd() {
{%- if cfg!(windows) %}
\command cygpath -w "$(\builtin pwd -P)"
{%- else if resolve_symlinks %}
2021-12-05 14:28:31 +05:30
\command pwd -P
2020-10-18 14:52:13 +05:30
{%- else %}
2021-12-05 14:28:31 +05:30
\command pwd -L
2020-10-18 14:52:13 +05:30
{%- endif %}
}
# cd + custom logic based on the value of _ZO_ECHO.
__zoxide_cd() {
# shellcheck disable=SC2164
2021-12-05 14:28:31 +05:30
\command 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-09-07 02:41:17 +05:30
{% match hook %}
{%- when InitHook::None -%}
2021-04-09 00:05:42 +05:30
{{ not_configured }}
2020-10-18 14:52:13 +05:30
2021-09-07 02:41:17 +05:30
{%- when InitHook::Prompt -%}
# Hook to add new entries to the database.
2020-10-18 14:52:13 +05:30
__zoxide_hook() {
2021-12-05 14:28:31 +05:30
\command zoxide add -- "$(__zoxide_pwd || \builtin true)"
2020-10-18 14:52:13 +05:30
}
# Initialize hook.
2021-10-31 20:16:40 +05:30
if [ "${PS1:=}" = "${PS1#*\$(__zoxide_hook)}" ]; then
PS1="${PS1}\$(__zoxide_hook)"
fi
2020-10-18 14:52:13 +05:30
2021-09-07 02:41:17 +05:30
{%- when InitHook::Pwd -%}
2021-12-05 14:28:31 +05:30
\command printf "%s\n%s\n" \
2021-09-07 02:41:17 +05:30
"zoxide: PWD hooks are not supported on POSIX shells." \
" Use 'zoxide init posix --hook prompt' instead."
{%- endmatch %}
2021-04-09 00:05:42 +05:30
{{ section }}
2022-04-22 13:11:11 +05:30
# When using zoxide with --no-cmd, alias these internal functions as desired.
2020-10-18 14:52:13 +05:30
#
# Jump to a directory using only keywords.
__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
2021-12-05 14:28:31 +05:30
\command printf 'zoxide: $OLDPWD is not set'
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-12-05 14:28:31 +05:30
__zoxide_result="$(\command zoxide query --exclude "$(__zoxide_pwd || \builtin true)" -- "$@")" &&
__zoxide_cd "${__zoxide_result}"
2020-10-18 14:52:13 +05:30
fi
}
# Jump to a directory using interactive search.
__zoxide_zi() {
2023-05-06 20:48:19 +05:30
__zoxide_result="$(\command zoxide query --interactive -- "$@")" && __zoxide_cd "${__zoxide_result}"
2020-10-18 14:52:13 +05:30
}
2021-04-09 00:05:42 +05:30
{{ section }}
2022-04-11 03:41:51 +05:30
# Commands for zoxide. Disable these using --no-cmd.
2020-10-18 14:52:13 +05:30
#
{%- match cmd %}
{%- when Some with (cmd) %}
\command unalias {{cmd}} >/dev/null 2>&1 || \true
{{cmd}}() {
__zoxide_z "$@"
}
\command unalias {{cmd}}i >/dev/null 2>&1 || \true
{{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:
2020-10-18 14:52:13 +05:30
#
# eval "$(zoxide init posix --hook prompt)"