fonttable icon indicating copy to clipboard operation
fonttable copied to clipboard

feature request: alternate output with character descriptions

Open nemothorx opened this issue 3 years ago • 1 comments

suggest an option which can be passed through to the awk core, to instead use this printf:

printf ("%c\t%s\n", strtonum("0x" $1), $2);

The tab ensures wide characters are seen regardless of terminal, and $2 gives the name of the character - useful both for learning, and for piping the output into grep (eg, fonttable | grep STAR).

nemothorx avatar May 29 '22 08:05 nemothorx

or perhaps this bit extra, so that the codepoint number can be learnt for typing (by ctrl-shift-u in gnome at least), rather than relying on copy/paste.

printf ("%c\t%s\t%s\n", strtonum("0x" $1), $1, $2);

nemothorx avatar May 29 '22 08:05 nemothorx