Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG]: console width should be None in scrollable consoles (jupyter) #3330

Open
2 tasks done
NickCrews opened this issue Apr 12, 2024 · 1 comment
Open
2 tasks done

Comments

@NickCrews
Copy link

Describe the bug

from rich.table import Table

t = Table()
t.add_column("col1", no_wrap=True)
t.add_column("col2")
content = "abc" * 100
t.add_row(content, content)
t

renders as

image

It would be better if the second column wasn't cut off, since it is possible to scroll sideways.

In ibis, we get around this by checking for Console.is_jupyter, and manually updating the options to the Console. But it would be nice if this was default behavior.

Copy link

We found the following entry in the FAQ which you may find helpful:

Feel free to close this issue if you found an answer in the FAQ. Otherwise, please give us a little time to review.

This is an automated reply, generated by FAQtory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant