| Crates.io | mimi |
| lib.rs | mimi |
| version | 0.1.2 |
| created_at | 2019-01-05 03:53:49.428034+00 |
| updated_at | 2019-01-05 04:17:01.638144+00 |
| description | A library for terminal-oriented runtime string formatting and interpolation. |
| homepage | https://github.com/deifactor/catgirl/tree/mistress/mimi |
| repository | http://github.com/deifactor/catgirl |
| max_upload_size | |
| id | 105586 |
| size | 68,173 |
mimi is a library for allowing the user to control how part of a terminal
program is formatted. The main usecase is for the catgirl command-line mpd
client, but of course other uses are welcome.

Variables are included using shell-like $foo syntax. Variable names can
contain a-zA-Z0-9_ (ASCII-only). ${foo}bar is valid syntax, and is parsed as
a variable named 'foo' followed immediately by the literal bar.
A styled section looks like %[bold]{blah $foo blah}. The style information
goes between the square brackets. Valid style names are:
black, white, red, green, yellow, blue, magenta,
cyan, as well as light_black, light_white, etc., which indicate the
color of the corresponding text.bg_ prefixed (for example, bg_yellow, bg_light_blue),
which sets the background color.reset and bg_reset, which set the foreground/background color to the
terminal's default.bold and underline.You can have multiple styles in a style section, so %[bold, red, bg_blue]{foo bar baz} is valid, if eye-searing. Style sections can nest.
Mimi has support for outputting xterm-compatible ANSI codes using
termion, and if the to_tui feature is
enabled (it's disabled by default), you'll be able to call style.into() to get
an instance of
tui::style::Style.
The demo binary in src/examples/demo.rs allows you to play around with mimi formatting. Run it like
cargo run --example demo -- -f "foo is %[bold]{\$foo}" foo=bar
'Nekomimi' is the Japanese word for 'person with cat ears', with 'neko' meaning 'cat' and 'mimi' meaning 'ears'.