Updated docs.

This commit is contained in:
Bruce Hill 2019-01-05 21:11:08 -08:00
parent e60d7770e0
commit 099b85810e
2 changed files with 29 additions and 12 deletions

View File

@ -14,8 +14,14 @@ passed as arguments.
## Controls ## Controls
In the ASCII table viewer, you can navigate with arrow keys or h/j/k/l. In the ASCII table viewer, you can navigate with arrow keys or h/j/k/l.
Pressing `enter` will append the selected character to the output buffer and Pressing `enter` will append the selected character to the output buffer and
`backspace` will delete from the output buffer. Pressing `i` will enter insert `backspace` will delete from the output buffer.
mode, where you can type freely into the output buffer, pressing `escape` will
leave insert mode. Pressing `q` or `escape` will exit and print the output Pressing `/` will open a search. You can begin typing to search by character or
buffer to stdout. Hitting control-c will quit without printing the output by name, and hit `enter` to select the result or `escape` to cancel. After
buffer. selecting a result, you can hit `n` to jump to the next match or `N` to jump to
the previous match.
Pressing `i` will enter insert mode, where you can type freely into the output
buffer, pressing `escape` will leave insert mode. Pressing `q` or `escape` will
exit and print the output buffer to stdout. Hitting control-c will quit without
printing the output buffer.

View File

@ -24,18 +24,29 @@ If decimal or hex numbers are passed as extra arguments, the corresponding raw
ASCII values will be appended to the output buffer after any piped input. ASCII values will be appended to the output buffer after any piped input.
.SH CONTROLS .SH CONTROLS
.TP
.B Navigating: .B Navigating:
In the ASCII table, arrow keys or h/j/k/l can be used to navigate. In the ASCII table, arrow keys or h/j/k/l can be used to navigate.
.B Editing: .TP
You can use 'enter' to append the selected character to the output buffer and .B Searching:
\'backspace' to delete from the output buffer. Or, for more rapid input, press Pressing \fB/\fR will open a search. You can begin typing to search by
\'i' to enter insert mode, where you can type freely, and 'escape' when you're character or by name, and hit \fBenter\fR to select the result or \fBescape\fR
done. to cancel. After selecting a result, you can hit \fBn\fR to jump to the next
match or \fBN\fR to jump to the previous match.
.TP
.B Editing:
You can hit \fBenter\fR to append the selected character to the output buffer
and \fBbackspace\fR to delete from the output buffer. Or, for more rapid input,
press \fBi\fR to enter insert mode, where you can type freely, and \fBescape\fR
when you're done.
.TP
.B Exiting: .B Exiting:
\'q' or 'escape' will quit and print the output buffer. Control-c can be used Press \fBq\fR or \fBescape\fR to quit and print the output buffer or hit
to quit without printing the output buffer. \fBcontrol-c\fR to quit without printing anything.
.SH EXAMPLES .SH EXAMPLES
.TP .TP