code / tomo-unicode

Lines41.6K Text41.0K Tomo583
3 others 91
Markdown81 make7 INI3
(37 lines)

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 # Unicode
3 `unicode` is a Tomo program to view information about the Unicode 3.1 standard
4 codepoints. The table viewer is an interactive text user interface with the
5 following controls:
7 ```
8 q - Quit the program
9 j/k or up/down - Move up or down one entry
10 Ctrl+d/Ctrl+u - Move up or down one page
11 g/G - Move to top/bottom
12 Ctrl+c or y - Copy the text of an entry to the clipboard
13 u - Copy the codepoint of an entry (U+XXXX) to the clipboard
14 d - Copy the decimal codepoint of an entry to the clipboard
15 Ctrl+f or / - Search for text (enter to confirm)
16 n/N - Jump to next/previous search result
17 ```
19 This project uses [bruce-hill/tomo-btui](https://github.com/bruce-hill/tomo-btui)
20 for the terminal user interface.
22 ## Installation
24 ```
25 make install
26 ```
28 Or:
30 ```
31 tomo -Ie unicode.tm
32 ```
34 ## License
36 This code is licensed under the MIT license with the Commons Clause.
37 See [LICENSE.md](LICENSE.md) for full details.