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

Fix help classification #655

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1090,6 +1090,8 @@ It can also be changed after startup.
| [C] | * alternate rows of style toggle |
| [G] | * line number toggle |
| [ctrl+e] | * original decoration toggle(plain) |
| [alt+F] | * align columns |
| [alt+R] | * raw output |
| **Change Display with Input** | |
| [p], [P] | * view mode selection |
| [d] | * column delimiter string |
Expand All @@ -1098,8 +1100,6 @@ It can also be changed after startup.
| [t] | * TAB width |
| [.] | * multi color highlight |
| [j] | * jump target(`.n` or `n%` or `section` allowed) |
| [alt+F] | * align columns |
| [alt+R] | * raw output |
| [alt+t] | * convert type selection |
| **Section** | |
| [alt+d] | * section delimiter regular expression |
Expand Down
4 changes: 2 additions & 2 deletions oviewer/keybind.go
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,8 @@ func (k KeyBind) String() string {
k.writeKeyBind(&b, actionAlternate, "alternate rows of style toggle")
k.writeKeyBind(&b, actionLineNumMode, "line number toggle")
k.writeKeyBind(&b, actionPlain, "original decoration toggle(plain)")
k.writeKeyBind(&b, actionAlignFormat, "align columns")
k.writeKeyBind(&b, actionRawFormat, "raw output")

writeHeader(&b, "Change Display with Input")
k.writeKeyBind(&b, actionViewMode, "view mode selection")
Expand All @@ -353,8 +355,6 @@ func (k KeyBind) String() string {
k.writeKeyBind(&b, actionTabWidth, "TAB width")
k.writeKeyBind(&b, actionMultiColor, "multi color highlight")
k.writeKeyBind(&b, actionJumpTarget, "jump target(`.n` or `n%` or `section` allowed)")
k.writeKeyBind(&b, actionAlignFormat, "align columns")
k.writeKeyBind(&b, actionRawFormat, "raw output")
k.writeKeyBind(&b, actionConvertType, "convert type selection")

writeHeader(&b, "Section")
Expand Down