Use global scope for aliases (#300)

This commit is contained in:
Ajeet D'Souza 2021-11-11 02:22:23 +05:30 committed by GitHub
parent e38f4d11bd
commit 9f2f2e978e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Fixed
- PowerShell: use global scope for aliases.
## [0.7.9] - 2021-11-02
### Changed

View File

@ -107,8 +107,8 @@ function __zoxide_zi {
{%- match cmd %}
{%- when Some with (cmd) %}
Set-Alias -Name {{cmd}} -Value __zoxide_z -Option AllScope
Set-Alias -Name {{cmd}}i -Value __zoxide_zi -Option AllScope
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
{%- when None %}