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

added extended chars to helpText #73

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions tui/tui.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ import (
)

const helpText = `
[::b]up/down, k/j [white:black:-]Move cursor up/down
[::b]pgup/pgdn, g/G [white:black:-]Move cursor top/bottom
[::b]enter, right, l [white:black:-]Go to directory/device
[::b]left, h [white:black:-]Go to parent directory
[::b]d [white:black:-]Delete selected file or directory
[::b]e [white:black:-]Empty selected file or directory
[::b]v [white:black:-]Show content of selected file
[::b]i [white:black:-]Show info about selected item
[::b]r [white:black:-]Rescan current directory
[::b]a [white:black:-]Toggle between showing disk usage and apparent size
[::b]c [white:black:-]Show/hide file count
[::b]n [white:black:-]Sort by name (asc/desc)
[::b]s [white:black:-]Sort by size (asc/desc)
[::b]C [white:black:-]Sort by file count (asc/desc)
[::b]q [white:black:-]Quit gdu
[::b]up/down, k/j [white:black:-]Move cursor up/down
[::b]pgup/pgdn, g/G [white:black:-]Move cursor top/bottom
[::b]enter, right, l [white:black:-]Go to directory/device
[::b]left, h [white:black:-]Go to parent directory
[::b]d [white:black:-]Delete selected file or directory
[::b]e [white:black:-]Empty selected file or directory
[::b]v [white:black:-]Show content of selected file
[::b]i [white:black:-]Show info about selected item
[::b]r [white:black:-]Rescan current directory
[::b]a [white:black:-]Toggle between showing disk usage and apparent size
[::b]c [white:black:-]Show/hide file count
[::b]n [white:black:-]Sort by name (asc/desc)
[::b]s [white:black:-]Sort by size (asc/desc)
[::b]C [white:black:-]Sort by file count (asc/desc)
[::b]q [white:black:-]Quit gdu
`

// UI struct
Expand Down