mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #154] Cannot scroll through output #67
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @himat on GitHub (Jun 25, 2021).
Original GitHub issue: https://github.com/bootandy/dust/issues/154
I'm on macos iterm2 zsh (+ ohmyzsh).
When I run
dust, the output is printed out but I'm unable to scroll back up to see the full output. I can only see the last part of the dust output.Ex:
I assume this is some issue with my terminal setup + how dust outputs text to the terminal.
What other info can I give to help debug this?
@bootandy commented on GitHub (Jun 28, 2021):
Just pointing out the obvious here: dust will only generate a terminal height's worth of data. -> Does it do 'what you expect' if you run with 'dust -n 200' or 'dust -d 4' ?
@himat commented on GitHub (Jun 28, 2021):
Ah okay, I thought it actually printed out the entire tree, but only showed the last part of the tree on the screen.
But I guess it shows the largest dirs/files first all the time anyway which is the most important part, so I guess there's no problem, and I can use the -n/-d options if I want to print more. Thanks!