zoxide/templates/powershell.txt

128 lines
3.3 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 zoxide's format.
2020-10-18 09:22:13 +00:00
function __zoxide_pwd {
2021-12-13 06:46:12 +00:00
$cwd = Get-Location
if ($cwd.Provider.Name -eq "FileSystem") {
$cwd.ProviderPath
}
2020-10-18 09:22:13 +00:00
}
# cd + custom logic based on the value of _ZO_ECHO.
2021-12-14 19:43:45 +00:00
function __zoxide_cd($dir, $literal) {
$dir = if ($literal) {
Set-Location -LiteralPath $dir -Passthru -ErrorAction Stop
} else {
Set-Location -Path $dir -Passthru -ErrorAction Stop
}
2021-04-08 18:35:42 +00:00
{%- if echo %}
2021-12-13 06:46:12 +00:00
Write-Output $dir.Path
2021-04-08 18:35:42 +00:00
{%- 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.
function __zoxide_hook {
$result = __zoxide_pwd
2021-09-17 19:59:46 +00:00
if ($null -ne $result) {
zoxide add -- $result
}
2020-10-18 09:22:13 +00:00
}
# Initialize hook.
{# Initialize $__zoxide_hooked if it does not exist. Removing this will cause
# an unset variable error in StrictMode. #}
$__zoxide_hooked = (Get-Variable __zoxide_hooked -ValueOnly -ErrorAction SilentlyContinue)
if ($__zoxide_hooked -ne 1) {
$__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 %}
$prompt_old = $function:prompt
function prompt {
2020-10-18 09:22:13 +00:00
$null = __zoxide_hook
& $prompt_old
2020-10-18 09:22:13 +00:00
}
2021-05-03 21:12:43 +00:00
{%- when InitHook::Pwd %}
if ($PSVersionTable.PSVersion.Major -ge 6) {
$ExecutionContext.InvokeCommand.LocationChangedAction = {
$null = __zoxide_hook
}
2021-09-17 19:59:46 +00:00
}
else {
Write-Error ("`n" +
2021-03-31 16:45:43 +00:00
"zoxide: PWD hooks are not supported below powershell 6.`n" +
2021-03-13 21:34:30 +00:00
" Use 'zoxide init powershell --hook prompt' instead.")
}
2021-04-08 18:35:42 +00:00
{%- endmatch %}
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.
function __zoxide_z {
if ($args.Length -eq 0) {
2021-12-14 19:43:45 +00:00
__zoxide_cd ~ $true
2020-10-18 09:22:13 +00:00
}
2021-12-14 19:43:45 +00:00
elseif (
$args.Length -eq 1 -and
(($args[0] -eq '-' -or $args[0] -eq '+') -or (Test-Path $args[0] -PathType Container))
) {
__zoxide_cd $args[0] $false
}
2020-10-18 09:22:13 +00:00
else {
$result = __zoxide_pwd
2021-09-17 19:59:46 +00:00
if ($null -ne $result) {
$result = zoxide query --exclude $result -- @args
2021-09-17 19:59:46 +00:00
}
else {
$result = zoxide query -- @args
}
2020-10-18 09:22:13 +00:00
if ($LASTEXITCODE -eq 0) {
2021-12-14 19:43:45 +00:00
__zoxide_cd $result $true
2020-10-18 09:22:13 +00:00
}
}
}
# Jump to a directory using interactive search.
function __zoxide_zi {
$result = zoxide query -i -- @args
2020-10-18 09:22:13 +00:00
if ($LASTEXITCODE -eq 0) {
2021-12-14 19:43:45 +00:00
__zoxide_cd $result $true
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) %}
2021-11-10 20:52:23 +00:00
Set-Alias -Name {{cmd}} -Value __zoxide_z -Option AllScope -Scope Global -Force
Set-Alias -Name {{cmd}}i -Value __zoxide_zi -Option AllScope -Scope Global -Force
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-08-05 08:52:12 +00:00
# To initialize zoxide, add this to your configuration (find it by running
# `echo $profile` in PowerShell):
2020-10-18 09:22:13 +00:00
#
2021-12-14 19:43:45 +00:00
# Invoke-Expression (& { $hook = if ($PSVersionTable.PSVersion.Major -ge 6) { 'pwd' } else { 'prompt' } (zoxide init powershell --hook $hook | Out-String) })