[ Table Of Contents | Keyword Index ]

term::ansi::code::attr(n) 0.1 tcllib_1_13 "Terminal control"

Name

term::ansi::code::attr - ANSI attribute sequences

Table Of Contents

Synopsis

Description

This package provides symbolic names for the ANSI attribute control codes. For each control code a single command is provided which returns this code as its result. None of the commands of this package write to a channel; that is handled by higher level packages, like term::ansi::send.

API

Introspection

::term::ansi::code::attr::names

This command is for introspection. It returns as its result a list containing the names of all attribute commands.

::term::ansi::code::attr::import ?ns? ?arg...?

This command imports some or all attribute commands into the namespace ns. This is by default the namespace attr. Note that this is relative namespace name, placing the imported command into a child of the current namespace. By default all commands are imported, this can howver be restricted by listing the names of the wanted commands after the namespace argument.

Attributes

::term::ansi::code::attr::fgblack

Set text color to Black.

::term::ansi::code::attr::fgred

Set text color to Red.

::term::ansi::code::attr::fggreen

Set text color to Green.

::term::ansi::code::attr::fgyellow

Set text color to Yellow.

::term::ansi::code::attr::fgblue

Set text color to Blue.

::term::ansi::code::attr::fgmagenta

Set text color to Magenta.

::term::ansi::code::attr::fgcyan

Set text color to Cyan.

::term::ansi::code::attr::fgwhite

Set text color to White.

::term::ansi::code::attr::fgdefault

Set default text color (Black).

::term::ansi::code::attr::bgblack

Set background to Black.

::term::ansi::code::attr::bgred

Set background to Red.

::term::ansi::code::attr::bggreen

Set background to Green.

::term::ansi::code::attr::bgyellow

Set background to Yellow.

::term::ansi::code::attr::bgblue

Set background to Blue.

::term::ansi::code::attr::bgmagenta

Set background to Magenta.

::term::ansi::code::attr::bgcyan

Set background to Cyan.

::term::ansi::code::attr::bgwhite

Set background to White.

::term::ansi::code::attr::bgdefault

Set default background (Transparent).

::term::ansi::code::attr::bold

Bold on.

::term::ansi::code::attr::dim

Dim on.

::term::ansi::code::attr::italic

Italics on.

::term::ansi::code::attr::underline

Underscore on.

::term::ansi::code::attr::blink

Blink on.

::term::ansi::code::attr::revers

Reverse on.

::term::ansi::code::attr::hidden

Hidden on.

::term::ansi::code::attr::strike

Strike-through on.

::term::ansi::code::attr::nobold

Bold off.

::term::ansi::code::attr::noitalic

Italics off.

::term::ansi::code::attr::nounderline

Underscore off.

::term::ansi::code::attr::noblink

Blink off.

::term::ansi::code::attr::norevers

Reverse off.

::term::ansi::code::attr::nohidden

Hidden off.

::term::ansi::code::attr::nostrike

Strike-through off.

::term::ansi::code::attr::reset

Reset all attributes to their default values.

BUGS, IDEAS, FEEDBACK

This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category term of the Tcllib SF Trackers. Please also report any ideas for enhancements you may have for either package and/or documentation.

Keywords

ansi, attribute control, color control, control, terminal

Category

Terminal control