Unicode
unicode is a Tomo program to view information about the Unicode 3.1 standard
codepoints. The table viewer is an interactive text user interface with the
following controls:
q - Quit the program
j/k or up/down - Move up or down one entry
Ctrl+d/Ctrl+u - Move up or down one page
g/G - Move to top/bottom
Ctrl+c or y - Copy the text of an entry to the clipboard
u - Copy the codepoint of an entry (U+XXXX) to the clipboard
d - Copy the decimal codepoint of an entry to the clipboard
Ctrl+f or / - Search for text (enter to confirm)
n/N - Jump to next/previous search result
This project uses bruce-hill/tomo-btui for the terminal user interface.
Installation
make install
Or:
tomo -Ie unicode.tm
License
This code is licensed under the MIT license with the Commons Clause. See LICENSE.md for full details.
1 # Unicode4 codepoints. The table viewer is an interactive text user interface with the5 following controls:7 ```8 q - Quit the program9 j/k or up/down - Move up or down one entry10 Ctrl+d/Ctrl+u - Move up or down one page11 g/G - Move to top/bottom12 Ctrl+c or y - Copy the text of an entry to the clipboard13 u - Copy the codepoint of an entry (U+XXXX) to the clipboard14 d - Copy the decimal codepoint of an entry to the clipboard15 Ctrl+f or / - Search for text (enter to confirm)16 n/N - Jump to next/previous search result17 ```20 for the terminal user interface.22 ## Installation24 ```25 make install26 ```28 Or:30 ```31 tomo -Ie unicode.tm32 ```34 ## License36 This code is licensed under the MIT license with the Commons Clause.