A terminal ASCII table viewer
Go to file
2019-01-03 17:39:02 -08:00
ascii.c Some cleanup, added scrolling. 2019-01-03 17:30:56 -08:00
LICENSE Added readme and license. 2019-01-03 17:39:02 -08:00
Makefile Some cleanup, added scrolling. 2019-01-03 17:30:56 -08:00
README Added readme and license. 2019-01-03 17:39:02 -08:00

# ascii

A simple curses console application that shows an ASCII table and lets you
manually output ASCII sequences.

## Usage

Just run `ascii` to launch the ascii table viewier or `ascii N1 N2...` to print
the ASCII characters listed by number, e.g. `ascii 72 105` will print `Hi`. In
the ASCII table viewer, you can navigate with arrow keys or h/j/k/l. Pressing
`enter` will append to the output buffer and `backspace` will delete from the
output buffer.  Pressing `q` or `escape` will exit and print the output buffer
to stdout. Hitting control-c will quit without printing the output buffer.