diff --git a/book/explore.md b/book/explore.md index 10252b3ac7..ca2f8a7f03 100644 --- a/book/explore.md +++ b/book/explore.md @@ -8,10 +8,10 @@ Explore is a table pager, just like `less` but for table structured data. ### Parameters -- `--head {boolean}`: turn off column headers -- `--index`: show row indexes (by default it's not showed) -- `--reverse`: start from the last row -- `--peek`: returns a last used value, so it can be used in next pipelines + - `--head {bool}`: Show or hide column headers (default true) + - `--index, -i`: Show row indexes when viewing a list + - `--tail, -t`: Start with the viewport scrolled to the bottom + - `--peek, -p`: When quitting, output the value of the cell the cursor was on ## Get Started @@ -23,7 +23,7 @@ ls | explore -i So the main point of [`explore`](/commands/docs/explore.md) is `:table` (Which you see on the above screenshot). -You can interact with it via ``, ``, ``, `` _arrow keys_. +You can interact with it via ``, ``, ``, `` _arrow keys_. It also supports the `Vim` keybindings ``, ``, ``, and ``, `` and ``, and it supports the `Emacs` keybindings ``, ``, ``, and ``. You can inspect a underlying values by entering into cursor mode. You can press either `` or `` to do so. Then using _arrow keys_ you can choose a necessary cell. diff --git a/commands/docs/explore.md b/commands/docs/explore.md index d1b4a422e5..04ae758c73 100644 --- a/commands/docs/explore.md +++ b/commands/docs/explore.md @@ -20,7 +20,7 @@ usage: | ## Flags - - `--head, - {bool}`: Show or hide column headers (default true) + - `--head {bool}`: Show or hide column headers (default true) - `--index, -i`: Show row indexes when viewing a list - `--tail, -t`: Start with the viewport scrolled to the bottom - `--peek, -p`: When quitting, output the value of the cell the cursor was on