Created
September 11, 2024 21:16
-
-
Save mrysav/b7bd05baec10aacbefaeeccaa2bcf058 to your computer and use it in GitHub Desktop.
PowerShell profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/material.omp.json" | Invoke-Expression | |
| Register-ArgumentCompleter -Native -CommandName az -ScriptBlock { | |
| param($commandName, $wordToComplete, $cursorPosition) | |
| $completion_file = New-TemporaryFile | |
| $env:ARGCOMPLETE_USE_TEMPFILES = 1 | |
| $env:_ARGCOMPLETE_STDOUT_FILENAME = $completion_file | |
| $env:COMP_LINE = $wordToComplete | |
| $env:COMP_POINT = $cursorPosition | |
| $env:_ARGCOMPLETE = 1 | |
| $env:_ARGCOMPLETE_SUPPRESS_SPACE = 0 | |
| $env:_ARGCOMPLETE_IFS = "`n" | |
| $env:_ARGCOMPLETE_SHELL = 'powershell' | |
| az 2>&1 | Out-Null | |
| Get-Content $completion_file | Sort-Object | ForEach-Object { | |
| [System.Management.Automation.CompletionResult]::new($_, $_, "ParameterValue", $_) | |
| } | |
| Remove-Item $completion_file, Env:\_ARGCOMPLETE_STDOUT_FILENAME, Env:\ARGCOMPLETE_USE_TEMPFILES, Env:\COMP_LINE, Env:\COMP_POINT, Env:\_ARGCOMPLETE, Env:\_ARGCOMPLETE_SUPPRESS_SPACE, Env:\_ARGCOMPLETE_IFS, Env:\_ARGCOMPLETE_SHELL | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment