Detects the Unicode Version of an interactive terminal for export
Project description
This CLI utility determines the Unicode Version of a terminal, and prints an sh-compatible variable for export:
$ ucs-detect UNICODE_VERSION=12.0.0; export UNICODE_VERSION
This environment variable is then used by the python wcwidth library, to determine how dependent python programs, such as IPython and others using python-prompt-toolkit render zero-width and wide unicode characters.
If this variable is not exported, the python wcwidth library assumes the latest.
Installation & Usage
From an sh-compatible shell:
pip install -U ucs-detect eval $(ucs-detect)
To make this automatic, add the eval statement to your shell login profile.
Problem
Chinese, Japanese, Korean, and Emoticon characters are “double-wide”, occupying 2 cells, instead of 1, and some other special characters are “zero-width”.
Any terminal application that formats and displays these characters may have trouble determining how it will be displayed to the end-user. Here is one such example, from vercel/hyper terminal:
This problem happens often, because the Unicode Consortium releases new versions of the Unicode Standard periodically, but the source code of libraries and applications are not updated at the same time, or at all!
Many languages and libraries continue to conform only to Unicode 5.0, which is the last version of wcwidth.c released by Markus Kuhn in 2007.
Solution
The most important factor is to determine: What version of unicode is the Terminal Emulator using?
This program, ucs-detect, is able to automatically detect the version of unicode that the connecting Terminal supports. The python wcwidth library supports all Unicode versions, 4.1.0 through 12.1.0 at time of this writing, and so it is able to select and match the correct return value for by using the given value of the UNICODE_VERSION environment variable.
With this solution, we can correctly determine the UNICODE_VERSION of vercel/hyper terminal as 5.1.0, and the cells that were previously mis-aligned are now aligned correctly:
How it works
The unicode version is determined using the Query Cursor Position terminal sequence, which asks the terminal emulator “where is the cursor?”.
By displaying a series of Wide Unicode characters for each Unicode version expected to advance the cursor by 2 cells, the last version that successfully advances 2 cells is determined to be the version of Unicode supported by the Terminal Emulator.
This solution of using Query Cursor Position and exporting an sh variable is precisely the same solution used by the resize(1) program distributed with X11, which determines the terminal size over transports that are not capable of communicating or forwarding it (such as over a serial line).
Further
I hope that this CLI tool is provisional. I’d like to see all Terminal Emulators automatically export the environment variable, UNICODE_VERSION and that this tool would not be required.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ucs_detect-0.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39262786ad03a57221b27ade4f4abd493f0139248a7fb0a49e9bfa5ca2a205bf |
|
MD5 | 20b8b0ce9c617b6ec4ad388ea8e42499 |
|
BLAKE2b-256 | d2fe742ff5b14af114d710233a7efd5bc098ae2a71373e0b2dd31fec57e646ae |