PSProfile/Profile/_Platform_NonWindows/PSReadline.IsHidden.ps1
if ((Get-Module PSReadLine).Version -ge '2.1' ) { Set-PSReadLineOption -Colors @{ Selection = "`e[92;7m"; InLinePrediction = "`e[36;7;238m" } -PredictionSource History Set-PSReadLineKeyHandler -Chord Shift+Tab -Function MenuComplete Set-PSReadLineKeyHandler -Chord Ctrl+b -Function BackwardWord Set-PSReadLineKeyHandler -Chord Ctrl+f -Function ForwardWord } |