mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-10 23:30:57 +00:00
87 lines
2.1 KiB
Plaintext
87 lines
2.1 KiB
Plaintext
{%- let section = "# =============================================================================\n#" -%}
|
|
{%- let not_configured = "# -- not configured --" -%}
|
|
|
|
use builtin
|
|
use path
|
|
|
|
{{ section }}
|
|
# Utility functions for zoxide.
|
|
#
|
|
|
|
# cd + custom logic based on the value of _ZO_ECHO.
|
|
fn __zoxide_cd [path]{
|
|
builtin:cd $path
|
|
{%- if echo %}
|
|
builtin:echo $pwd
|
|
{%- endif %}
|
|
}
|
|
|
|
{{ section }}
|
|
# Hook configuration for zoxide.
|
|
#
|
|
|
|
if (not (and (builtin:has-env __zoxide_hooked) (builtin:eq (builtin:get-env __zoxide_hooked) 1))) {
|
|
builtin:set-env __zoxide_hooked 1
|
|
|
|
# Initialize hook to track previous directory.
|
|
builtin:set-env __zoxide_oldpwd $pwd
|
|
before-chdir = [$@before-chdir [_]{ builtin:set-env __zoxide_oldpwd $pwd }]
|
|
|
|
# Initialize hook to add directories to zoxide.
|
|
{%- match hook %}
|
|
{%- when Hook::None %}
|
|
{{ not_configured }}
|
|
{%- when Hook::Prompt %}
|
|
edit:before-readline = [$@edit:before-readline []{ zoxide add $pwd }]
|
|
{%- when Hook::Pwd %}
|
|
after-chdir = [$@after-chdir [_]{ zoxide add $pwd }]
|
|
{%- endmatch %}
|
|
}
|
|
|
|
{{ section }}
|
|
# When using zoxide with --no-aliases, alias these internal functions as
|
|
# desired.
|
|
#
|
|
|
|
# Jump to a directory using only keywords.
|
|
fn __zoxide_z [@rest]{
|
|
if (builtin:eq [] $rest) {
|
|
__zoxide_cd ~
|
|
} elif (builtin:eq [-] $rest) {
|
|
__zoxide_cd (builtin:get-env __zoxide_oldpwd)
|
|
} elif (and (builtin:eq (builtin:count $rest) 1) (path:is-dir $rest[0])) {
|
|
__zoxide_cd $rest[0]
|
|
} else {
|
|
__zoxide_cd (zoxide query --exclude $pwd -- $@rest)
|
|
}
|
|
}
|
|
edit:add-var __zoxide_z~ $__zoxide_z~
|
|
|
|
# Jump to a directory using interactive search.
|
|
fn __zoxide_zi [@rest]{
|
|
__zoxide_cd (zoxide query -i -- $@rest)
|
|
}
|
|
edit:add-var __zoxide_zi~ $__zoxide_zi~
|
|
|
|
{{ section }}
|
|
# Convenient aliases for zoxide. Disable these using --no-aliases.
|
|
#
|
|
|
|
{%- match cmd %}
|
|
{%- when Some with (cmd) %}
|
|
|
|
edit:add-var z~ $__zoxide_z~
|
|
edit:add-var zi~ $__zoxide_zi~
|
|
|
|
{%- when None %}
|
|
|
|
{{ not_configured }}
|
|
|
|
{%- endmatch %}
|
|
|
|
{{ section }}
|
|
# To initialize zoxide with xonsh, add the following line to your elvish
|
|
# configuration file (usually ~/.elvish/rc.elv):
|
|
#
|
|
# eval $(zoxide init elvish | slurp)
|