├── .github └── workflows │ └── onPush.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── assets ├── auto-cd.svg ├── cd-enhancements.svg ├── navigation-helpers.svg └── overview.svg ├── cd-extras ├── cd-extras.psd1 ├── cd-extras.psm1 ├── private │ ├── AutoCd.ps1 │ ├── CommandNotFound.ps1 │ ├── CompleteAncestors.ps1 │ ├── CompletePaths.ps1 │ ├── CompleteStack.ps1 │ └── Core.ps1 └── public │ ├── Aliases.ps1 │ ├── Clear-Stack.ps1 │ ├── Expand-Path.ps1 │ ├── Get-Ancestors.ps1 │ ├── Get-Stack.ps1 │ ├── Get-Up.ps1 │ ├── Redo-Location.ps1 │ ├── Set-CdExtrasOption.ps1 │ ├── Set-LocationEx.ps1 │ ├── Step-Between.ps1 │ ├── Step-Up.ps1 │ ├── Switch-LocationPart.ps1 │ ├── Undo-Location.ps1 │ └── _Classes.ps1 ├── codecov.yml ├── publishme.ps1 ├── readme.md └── tests ├── cd-extras.Tests.ps1 ├── sampleStructure.txt └── test.ps1 /.github/workflows/onPush.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/.github/workflows/onPush.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/LICENSE -------------------------------------------------------------------------------- /PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- 1 | @{ 2 | ExcludeRules = @('PSAvoidUsingCmdletAliases') 3 | } 4 | -------------------------------------------------------------------------------- /assets/auto-cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/assets/auto-cd.svg -------------------------------------------------------------------------------- /assets/cd-enhancements.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/assets/cd-enhancements.svg -------------------------------------------------------------------------------- /assets/navigation-helpers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/assets/navigation-helpers.svg -------------------------------------------------------------------------------- /assets/overview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/assets/overview.svg -------------------------------------------------------------------------------- /cd-extras/cd-extras.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/cd-extras.psd1 -------------------------------------------------------------------------------- /cd-extras/cd-extras.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/cd-extras.psm1 -------------------------------------------------------------------------------- /cd-extras/private/AutoCd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/AutoCd.ps1 -------------------------------------------------------------------------------- /cd-extras/private/CommandNotFound.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/CommandNotFound.ps1 -------------------------------------------------------------------------------- /cd-extras/private/CompleteAncestors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/CompleteAncestors.ps1 -------------------------------------------------------------------------------- /cd-extras/private/CompletePaths.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/CompletePaths.ps1 -------------------------------------------------------------------------------- /cd-extras/private/CompleteStack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/CompleteStack.ps1 -------------------------------------------------------------------------------- /cd-extras/private/Core.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/private/Core.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Aliases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Aliases.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Clear-Stack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Clear-Stack.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Expand-Path.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Expand-Path.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Get-Ancestors.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Get-Ancestors.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Get-Stack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Get-Stack.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Get-Up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Get-Up.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Redo-Location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Redo-Location.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Set-CdExtrasOption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Set-CdExtrasOption.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Set-LocationEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Set-LocationEx.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Step-Between.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Step-Between.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Step-Up.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Step-Up.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Switch-LocationPart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Switch-LocationPart.ps1 -------------------------------------------------------------------------------- /cd-extras/public/Undo-Location.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/Undo-Location.ps1 -------------------------------------------------------------------------------- /cd-extras/public/_Classes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/cd-extras/public/_Classes.ps1 -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/codecov.yml -------------------------------------------------------------------------------- /publishme.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/publishme.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/readme.md -------------------------------------------------------------------------------- /tests/cd-extras.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/tests/cd-extras.Tests.ps1 -------------------------------------------------------------------------------- /tests/sampleStructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/tests/sampleStructure.txt -------------------------------------------------------------------------------- /tests/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickcox/cd-extras/HEAD/tests/test.ps1 --------------------------------------------------------------------------------