fix(pwsh): disable transient prompt for ConstrainedLanguage mode

This commit is contained in:
L. Yeung 2022-09-17 14:45:19 +08:00 committed by Jan De Dobbeleer
parent 3057e474d7
commit 7ebfc530fe

View file

@ -117,7 +117,7 @@ New-Module -Name "oh-my-posh-core" -ScriptBlock {
}
}
if ("::TRANSIENT::" -eq "true") {
if (("::TRANSIENT::" -eq "true") -and ($ExecutionContext.SessionState.LanguageMode -ne "ConstrainedLanguage")) {
Set-PSReadLineKeyHandler -Key Enter -BriefDescription 'OhMyPoshEnterKeyHandler' -ScriptBlock {
$previousOutputEncoding = [Console]::OutputEncoding
try {