mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-10 23:30:57 +00:00
93 lines
2.1 KiB
Plaintext
93 lines
2.1 KiB
Plaintext
{%- let section = "# =============================================================================\n#" -%}
|
|
{%- let not_configured = "# -- not configured --" -%}
|
|
|
|
# Code generated by zoxide. DO NOT EDIT.
|
|
|
|
{{ section }}
|
|
# Hook configuration for zoxide.
|
|
#
|
|
{% match hook %}
|
|
{%- when InitHook::None %}
|
|
{{ not_configured }}
|
|
|
|
{%- when InitHook::Prompt %}
|
|
# Default prompt for Nushell.
|
|
let-env __zoxide_oldprompt = (if '__zoxide_oldprompt' in (env).name {
|
|
$env.__zoxide_oldprompt
|
|
} else if 'PROMPT_COMMAND' in (env).name {
|
|
$env.PROMPT_COMMAND
|
|
} else {
|
|
{ $env.PWD }
|
|
})
|
|
|
|
# Hook to add new entries to the database.
|
|
def __zoxide_hook [] {
|
|
zoxide add -- $env.PWD
|
|
}
|
|
|
|
# Initialize hook.
|
|
let-env PROMPT_COMMAND = {
|
|
__zoxide_hook
|
|
do $env.__zoxide_oldprompt
|
|
}
|
|
|
|
{%- when InitHook::Pwd %}
|
|
echo "zoxide: PWD hooks are not supported on Nushell.\nUse `zoxide init nushell --hook prompt` instead."
|
|
|
|
{%- endmatch %}
|
|
|
|
{{ section }}
|
|
# When using zoxide with --no-cmd, alias these internal functions as desired.
|
|
#
|
|
|
|
# Jump to a directory using only keywords.
|
|
def-env __zoxide_z [...rest:string] {
|
|
# `z -` does not work yet, see https://github.com/nushell/nushell/issues/4769
|
|
let arg0 = ($rest | append '~').0
|
|
let path = if ($rest | length) <= 1 && ($arg0 | path expand | path type) == dir {
|
|
$arg0
|
|
} else {
|
|
(zoxide query --exclude $env.PWD -- $rest | str trim -r -c "\n")
|
|
}
|
|
cd $path
|
|
{%- if echo %}
|
|
echo $env.PWD
|
|
{%- endif %}
|
|
}
|
|
|
|
# Jump to a directory using interactive search.
|
|
def-env __zoxide_zi [...rest:string] {
|
|
cd $'(zoxide query -i -- $rest | str trim -r -c "\n")'
|
|
{%- if echo %}
|
|
echo $env.PWD
|
|
{%- endif %}
|
|
}
|
|
|
|
{{ section }}
|
|
# Commands for zoxide. Disable these using --no-cmd.
|
|
#
|
|
|
|
{%- match cmd %}
|
|
{%- when Some with (cmd) %}
|
|
|
|
alias {{cmd}} = __zoxide_z
|
|
alias {{cmd}}i = __zoxide_zi
|
|
|
|
{%- when None %}
|
|
|
|
{{ not_configured }}
|
|
|
|
{%- endmatch %}
|
|
|
|
{{ section }}
|
|
# Add this to your env file (find it by running `$nu.env-path` in Nushell):
|
|
#
|
|
# zoxide init nushell --hook prompt | save ~/.zoxide.nu
|
|
#
|
|
# Now, add this to the end of your config file (find it by running
|
|
# `$nu.config-path` in Nushell):
|
|
#
|
|
# source ~/.zoxide.nu
|
|
#
|
|
# Note: zoxide only supports Nushell v0.61.0 and above.
|