From 837f856273eb0394f38c664a9c66448c33248191 Mon Sep 17 00:00:00 2001 From: Yung Siang Liau Date: Sun, 10 Dec 2023 22:10:06 +0800 Subject: [PATCH] Update README and help page --- README.md | 3 +++ src/help.rs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 0d2b77b..ab9cdca 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,11 @@ Key | Action `&` | Filter rows using regex (show only matches) `*` | Filter columns using regex (show only matches) `TAB` | Toggle between row, column or cell selection modes +`>` | Increase selected column's width +`<` | Decrease selected column's width `Enter` (in Cell mode) | Print the selected cell to stdout and exit `-S` | Toggle line wrapping +`r` | Reset to default view (clear all filters and custom column widths) `H` | Display help `q` | Exit diff --git a/src/help.rs b/src/help.rs index fb3cc52..9242e5c 100644 --- a/src/help.rs +++ b/src/help.rs @@ -37,11 +37,14 @@ N (in Find mode) : Jump to previous result # Selection modes TAB : Toggle between row, column or cell selection modes +> : Increase selected column's width +< : Decrease selected column's width Enter (in Cell mode) : Print the selected cell to stdout and exit # Other options -S : Toggle line wrapping +r : Reset to default view (clear all filters and custom column widths) H : Display this help q : Exit";