File: terminal_direct.rs

package info (click to toggle)
rust-termwiz 0.22.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,036 kB
  • sloc: sh: 10,450; makefile: 18
file content (27 lines) | stat: -rw-r--r-- 968 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//! This example shows how to render `Change`s directly to
//! an instance of `Terminal`.  When used in this way, the
//! library performas no optimization on the change stream.
//! Consider using the `Surface` struct to enable optimization;
//! the `buffered_terminal.rs` example demonstrates a simple
//! way to enable optimizations.

use termwiz::caps::Capabilities;
use termwiz::cell::AttributeChange;
use termwiz::color::AnsiColor;
use termwiz::surface::Change;
use termwiz::terminal::{new_terminal, Terminal};
use termwiz::Error;

fn main() -> Result<(), Error> {
    let caps = Capabilities::new_from_env()?;
    let mut terminal = new_terminal(caps)?;

    terminal.render(&[
        Change::Attribute(AttributeChange::Foreground(AnsiColor::Maroon.into())),
        Change::Text("Hello world\r\n".into()),
        Change::Attribute(AttributeChange::Foreground(AnsiColor::Red.into())),
        Change::Text("and in red here\r\n".into()),
    ])?;

    Ok(())
}