Feature description
Termux should have horizontal scrolling , similar to vertical scroll,
That's really not how terminals work. Output is always wrapped at width of terminal. In order for horizontal scrolling termux would have to report it's width to be greater than it actually is and this would cause a lot of ncurses and similar programs to be sized to whatever that size is and look really messy.
One other possibility would be to simply translate horizontal scrolling to arrow keys, but that would only work in very few programs (like running less --chop-long-lines --shift 1)
Thanks
Most helpful comment
That's really not how terminals work. Output is always wrapped at width of terminal. In order for horizontal scrolling termux would have to report it's width to be greater than it actually is and this would cause a lot of ncurses and similar programs to be sized to whatever that size is and look really messy.
One other possibility would be to simply translate horizontal scrolling to arrow keys, but that would only work in very few programs (like running
less --chop-long-lines --shift 1)