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
Use case in when a user is pumping lots of data without new line chars, e.g. 2,345,56,45,1,2,3,.... Forcing new line chars in breaks the formatting if they then want to copy/paste this data into another program.
The text was updated successfully, but these errors were encountered:
Having lines wrap will cause problems with react-window, which at the moment uses a known fixed height per "row" in the array of terminal data to work out what rows to render. react-window does support variable height rows, but I'm unsure at the moment if that will be enough to make this work.
If we could determine the height of each row based on the width of the terminal and the amount of text in it, this might work. Could be hard to calculate the height correctly without actually rendering into the terminal to measure the height.
Use case in when a user is pumping lots of data without new line chars, e.g.
2,345,56,45,1,2,3,...
. Forcing new line chars in breaks the formatting if they then want to copy/paste this data into another program.The text was updated successfully, but these errors were encountered: