Skip to main content

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 this statement to your shell (bash) profile:

if [ -z "$UNICODE_VERSION" ] && command -v ucs-detect >/dev/null; then
    eval "$(ucs-detect)"
fi

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:

An example of misaligned wide characters by the 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 width, by selecting for 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:

An example of corrected alignment by Hyper Terminal

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.

If you would like to read more about this tool and related problems I hope to address with this environment variable, have a look at his companion article, https://jeffquast.com/post/terminal_wcwidth_solution/

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ucs_detect-0.0.4.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

ucs_detect-0.0.4-py2.py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page