A terminal ASCII table viewer
Go to file
2019-01-05 20:42:26 -08:00
doc Added insert mode, for faster typing onto input. 2019-01-03 22:17:47 -08:00
ascii.c Added search functionality. 2019-01-05 20:42:26 -08:00
LICENSE Added readme and license. 2019-01-03 17:39:02 -08:00
Makefile Added uninstall. 2019-01-03 21:35:39 -08:00
README.md Added screenshot. 2019-01-03 22:27:16 -08:00

ascii

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

Screenshot

Usage

Just run ascii to launch the ascii table viewier. Any text piped in will be appended to an output buffer, followed by the ASCII values of any numbers passed as arguments.

Controls

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 backspace will delete from the output buffer. 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.