posh-tabcomplete 0.1.4

Blazing fast tab completion for powershell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
$ErrorActionPreference = 'Stop'
$PSNativeCommandUseErrorActionPreference = $true

if ($(Get-ExperimentalFeature "PSNativeCommandErrorActionPreference").Enabled -ne $true) {
    Write-Error @'
PSNativeCommandErrorActionPreference (pwsh 7.3 feature) must be enabled to run this script, so that if git.exe fails, the script will STOP
refer to https://learn.microsoft.com/en-us/powershell/scripting/learn/experimental-features?view=powershell-7.3
Please run:
Enable-ExperimentalFeature PSNativeCommandErrorActionPreference
'@
}