mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 04:54:03 -08:00
fix: ignore 0 size terminals
This commit is contained in:
parent
e8062af1bb
commit
2cf288e46c
|
@ -28,7 +28,7 @@ func (e *engine) string() string {
|
|||
func (e *engine) canWriteRPrompt() bool {
|
||||
prompt := e.string()
|
||||
consoleWidth, err := e.env.getTerminalWidth()
|
||||
if err != nil {
|
||||
if err != nil || consoleWidth == 0 {
|
||||
return true
|
||||
}
|
||||
promptWidth := e.ansi.lenWithoutANSI(prompt)
|
||||
|
|
Loading…
Reference in a new issue