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
dax should implement a new feature that enables partial window scrolling in the terminal, similar to the behavior seen in the Docker build process.
The current behavior of dax when running scripts or applications that produce a large amount of output in the terminal makes it difficult to navigate through the output as it scrolls off the visible portion of the terminal window. The introduction of this feature would greatly enhance the developer experience by allowing users to easily scroll through and review the output without losing context.
This would require capturing output of a subcommand, limiting it to N lines, and performing a partial scroll of the terminal window when those N lines overflow.
An example, limited to 5 lines, might look like the below. Previous lines (output before the deno_napi line) would be hidden from view.
dax
should implement a new feature that enables partial window scrolling in the terminal, similar to the behavior seen in the Docker build process.The current behavior of dax when running scripts or applications that produce a large amount of output in the terminal makes it difficult to navigate through the output as it scrolls off the visible portion of the terminal window. The introduction of this feature would greatly enhance the developer experience by allowing users to easily scroll through and review the output without losing context.
This would require capturing output of a subcommand, limiting it to N lines, and performing a partial scroll of the terminal window when those N lines overflow.
An example, limited to 5 lines, might look like the below. Previous lines (output before the
deno_napi
line) would be hidden from view.The text was updated successfully, but these errors were encountered: