mirror of
https://github.com/rivo/tview.git
synced 2026-04-26 21:35:54 +03:00
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#645
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 @gbegen on GitHub (Sep 14, 2023).
Original GitHub issue: https://github.com/rivo/tview/issues/886
Here is some code to reproduce the problem:
With tview at v0.0.0-20230814110005-ccc2c8119703 (the commit before the new parser), this renders as expected:
With tview at v0.0.0-20230826141931-7344139b5532 or newer, this renders like this:
Every escaped close brace is causing the next line to get shifted to the right and wrap to the next line.
@rivo commented on GitHub (Sep 16, 2023):
Thank you. Yes, there was still a bug in the new implementation. The latest commit should fix this.
@losnir commented on GitHub (Sep 18, 2023):
Thank you @rivo, I can confirm latest commit works.
Before:
After:
@rivo commented on GitHub (Sep 18, 2023):
Great! Thanks for the feedback!