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 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:

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 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:

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.

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.2.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

ucs_detect-0.0.2-py2.py3-none-any.whl (5.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file ucs_detect-0.0.2.tar.gz.

File metadata

  • Download URL: ucs_detect-0.0.2.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.1

File hashes

Hashes for ucs_detect-0.0.2.tar.gz
Algorithm Hash digest
SHA256 d21ee5e70713ae334a70f23a3923b7b553ffd26d2623048adf09eca13ff19bec
MD5 4c5a865c39e1ca9eaa683ec5119ecc06
BLAKE2b-256 006a9444234d34f7d9bcde62f304c18b49d6897143b99c78ef0fe745ad7ffe08

See more details on using hashes here.

File details

Details for the file ucs_detect-0.0.2-py2.py3-none-any.whl.

File metadata

  • Download URL: ucs_detect-0.0.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.1

File hashes

Hashes for ucs_detect-0.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 39262786ad03a57221b27ade4f4abd493f0139248a7fb0a49e9bfa5ca2a205bf
MD5 20b8b0ce9c617b6ec4ad388ea8e42499
BLAKE2b-256 d2fe742ff5b14af114d710233a7efd5bc098ae2a71373e0b2dd31fec57e646ae

See more details on using hashes here.

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