Skip to content

Commit

Permalink
Merge pull request #655 from noborus/fix-help-category
Browse files Browse the repository at this point in the history
Fix help classification
  • Loading branch information
noborus authored Nov 13, 2024
2 parents cf6c046 + 77c8777 commit fee39fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit fee39fe

Please sign in to comment.