mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
[GH-ISSUE #222] How to prevent the app clear the screen? #171
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#171
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ysmood on GitHub (Jan 11, 2019).
Original GitHub issue: https://github.com/rivo/tview/issues/222
I want to draw the app directly after previous shell prompt like below:
how to keep the output of the shell?
@rivo commented on GitHub (Jan 12, 2019):
I don't think this is possible. To my knowledge,
tcell(whichtviewuses) will only use the entire screen andtcell.Screen.Init()will clear it before drawing anything.You may head over to
tcellto ask if there is any way to limit it to a partial screen. (I don't know of any.)Let me know if this answers your question.