README

NAME

Terminal::Capabilities - Container for terminal capabilities, with useful defaults

SYNOPSIS

use Terminal::Capabilities;
use Terminal::Capabilities::Autodetect;
use Terminal::Capabilities::Summarize;

# Autodetect terminal and its capabilities via examination of terminal-related
# environment variables.  This does not touch the process table or run any
# subprocesses, so it should be quick and safe.
my ($autocaps, $terminal, $version) = terminal-env-detect;

# Autodetect and include a one-line compact human-readable summary of detected features
my ($caps, $terminal, $version, $summary) = summarize-autodetection;

# Create a terminal capabilities object with DEFAULT settings based on the most
# commonly well-supported capabilities, as determined by submissions to the
# Terminal::Tests project.  This method does NO AUTODECTION.
my Terminal::Capabilities $caps .= new;

# Examine individual capabilities
say $caps.symbol-set;   # ASCII by default, as it is the most compatible
say $caps.vt100-boxes;  # False by default, because ASCII does not require it
say $caps.color8bit;    # True  by default, since most terminals support it

# Override default symbol set
my $symbol-set = Terminal::Capabilities::SymbolSet::Uni1;
my $caps       = Terminal::Capabilities.new(:$symbol-set);

# Symbol set affects default for other features
say $caps.vt100-boxes;  # True, because WGL4R and all larger sets require it

# Determine best available symbol set supported by terminal out of a list
say $caps.best-symbol-set(< ASCII WGL4 MES2 Uni7 >);  # MES2, best <= Uni1

# Select from a list of options keyed by required symbol set
my %arrows = ASCII  => ยซ < > ยป,
             Latin1 => < ยซ ยป >,
             WGL4   => < โ—„ โ–บ >,
             Uni1   => < โ—€ โ–ถ >,
             Uni7   => < โฏ‡ โฏˆ >;
say $caps.best-symbol-choice(%arrows);  # โ—€ โ–ถ , the Uni1 option

# Map a possibly mis-cased string to a SymbolSet enumerant (for processing
# user symbol set config requests)
my $symbol-set = symbol-set('cp1252');  # Terminal::Capabilities::SymbolSet::CP1252

DESCRIPTION

Terminal::Capabilities is a relatively simple module that collects information about the capabilities of modern terminals (it assumes at least the ASCII character set, and ANSI/DEC VT style control sequence emulation).

The Terminal::Capabilities::Autodetect child module provides routines for autodetecting the user's terminal and its capabilities. The first such routine only examines environment variables, thus avoiding creating subprocesses, performing asynchronous queries to the terminal emulator, or mucking about in the user's process table. Simply call the terminal-env-detect routine to obtain a pre-populated Terminal::Capabilities object with the autodetection's best guesses, along with the terminal type detected and terminal program version if available:

use Terminal::Capabilities::Autodetect;
my ($caps, $type, $version) = terminal-env-detect;

If you'd also like to have a summary line that you can show the user or add to a log, you can instead use an extended version of the autodetection routine:

use Terminal::Capabilities::Summarize;
my ($caps, $type, $version, $summary) = summarize-autodetection;

Conversely, the core Terminal::Capabilities module does not do any autodetection, merely serving as a standard for collecting capabilities detected or configured through other means. That said, there are reasonable defaults for each of the capability flags based on the collected submissions to the Terminal::Tests project. The default values represent the capabilities that are universally supported (or nearly so -- there are a few truly deeply broken terminals for which nearly nothing works properly which are considered out of scope for the defaults).

One quirk of this method of determining defaults is that 8-bit color is more uniformly supported by modern terminals than various color and style attributes that were "standardized" decades earlier. Thus color8bit is by default True, while colorbright and italic are by default False.

Known Symbol Sets

In superset order, from smallest to largest:

The difference between WGL4R and full WGL4 is that the latter includes 18 additional symbol and drawing glyphs needed for full compatibility with CP437, the code page (glyph set) used in IBM PC-compatible video ROMs and thus all DOS programs. As these 18 are considered optional in the WGL4 spec, WGL4R allows specifying only the symbols required by WGL4, and thus guaranteed to work in any terminal font with at least minimal WGL4 compatibility.

Known Feature Flags

Several sets of flag (Bool) attributes indicate support for various features. There are sets for classic ANSI attributes, color support, emoji handling, and drawing symbols (often generated internally by the terminal emulator):

Quirks

Additional flag (Bool) attributes indicate rendering quirks that may require workarounds for some terminals.

.narrow-emoji-needs-space

Narrow default-text characters displayed as emoji using VS16 must be followed by a single space to prevent corrupted rendering, such as cut off, overlapping, or missing glyphs.

class Terminal::Capabilities

A container for the available capabilities of a particular terminal

sub symbol-set

sub symbol-set(
    Str:D $set = "Full"
) returns SymbolSet:D

Determine the correct SymbolSet enumerant for a possibly mis-cased string

has SymbolSet:D $.symbol-set

Largest supported symbol repertoire

has Bool $.vt100-boxes

Supports VT100 box drawing glyphs (nearly universal, but only required by WGL4R)

has Bool $.half-blocks

Supports half-block 1x2 glyphs (partially supported in WGL4R, but not fully until WGL4)

has Bool $.braille

Supports Braille glyphs (~ separated 2x4 octants, added in Unicode 3.0)

has Bool $.quadrants

Supports quadrant 2x2 glyphs (added in Unicode 3.2)

has Bool $.sextants

Supports sextant 2x3 glyphs (added in Unicode 13.0)

has Bool $.octants

Supports octant 2x4 glyphs (added in Unicode 16.0)

has Bool $.sep-quadrants

Supports SEPARATED quadrant 2x2 glyphs (added in Unicode 16.0)

has Bool $.sep-sextants

Supports SEPARATED sextant 2x3 glyphs (added in Unicode 16.0)

method best-symbol-set

method best-symbol-set(
    @sets
) returns SymbolSet:D

Find best symbol set supported by this terminal from a list of choices

method best-symbol-choice

method best-symbol-choice(
    %options
) returns Mu

Choose the best choice out of options keyed by required symbol set

AUTHOR

Geoffrey Broadwell [email protected]

COPYRIGHT AND LICENSE

Copyright 2023, 2025-2026 Geoffrey Broadwell

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

Terminal::Capabilities v0.0.21

Container for terminal capabilities, with useful defaults

Authors

  • Geoffrey Broadwell

License

Artistic-2.0

Dependencies

Terminal::ANSIColor:ver<0.14+>:auth<zef:raku-community-modules>

Test Dependencies

Provides

  • Terminal::Capabilities
  • Terminal::Capabilities::Autodetect
  • Terminal::Capabilities::Summarize

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.

Built with Podlite โ€” the markup and publishing tools behind this site.