mirror of
https://github.com/starship/starship.git
synced 2024-11-07 08:54:50 +01:00
feat(pwsh): Set ExtraPromptLineCount (#3439)
* feat(pwsh): Set ExtraPromptLineCount Fixes #3419 * Rename $prompt to $promptText
This commit is contained in:
parent
aaf4c17122
commit
0b184c3ccb
@ -106,7 +106,13 @@ $null = New-Module starship {
|
||||
$arguments += "--status=$($lastExitCodeForPrompt)"
|
||||
|
||||
# Invoke Starship
|
||||
Invoke-Native -Executable ::STARSHIP:: -Arguments $arguments
|
||||
$promptText = Invoke-Native -Executable ::STARSHIP:: -Arguments $arguments
|
||||
|
||||
# Set the number of extra lines in the prompt for PSReadLine prompt redraw.
|
||||
Set-PSReadLineOption -ExtraPromptLineCount ($promptText.Split("`n").Length - 1)
|
||||
|
||||
# Return the prompt
|
||||
$promptText
|
||||
|
||||
# Propagate the original $LASTEXITCODE from before the prompt function was invoked.
|
||||
$global:LASTEXITCODE = $origLastExitCode
|
||||
|
Loading…
Reference in New Issue
Block a user