You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
So this is pretty simple to replicate and test, but \x1b[1m \x1b[31m test this string will not be bold, which it should, based on ANSI standards. the first ANSI styling is overwritten by the second, however i don't use any reset flag so it shouldn't.. the following two strings should be identical, but they are not: \x1b[1m\x1b[31m test and \x1b[1;31m test.
YOu can easily test the expected output by using echo -e "\x1b[1m \x1b[31m test" - it basically seems like gocui overwrites the current color scheme/settings at every call, which IMO is a bug. Not sure if it's a feature. hehe
Environment (please complete the following information):
OS: Linux
The text was updated successfully, but these errors were encountered:
Thank you for the report! Right now we are reworking some things in the rendering part (see #47#49)
After those (maybe even during) I'll check if i can fix it!
Describe the bug
So this is pretty simple to replicate and test, but
\x1b[1m \x1b[31m test
this string will not be bold, which it should, based on ANSI standards. the first ANSI styling is overwritten by the second, however i don't use any reset flag so it shouldn't.. the following two strings should be identical, but they are not:\x1b[1m\x1b[31m test
and\x1b[1;31m test
.YOu can easily test the expected output by using
echo -e "\x1b[1m \x1b[31m test"
- it basically seems like gocui overwrites the current color scheme/settings at every call, which IMO is a bug. Not sure if it's a feature. heheEnvironment (please complete the following information):
The text was updated successfully, but these errors were encountered: