rust-ansi-term icon indicating copy to clipboard operation
rust-ansi-term copied to clipboard

Rust library for ANSI terminal colours and styles (bold, underline)

Results 28 rust-ansi-term issues
Sort by recently updated
recently updated
newest added

Add Colour::approx_rgb and Colour::into_256 which convert RGB variant into Fixed variant. This is useful when an application is running on a terminal which does not support True Colour control codes....

The scope of the unsafe block can be appropriately reduced

related to this issue in `color-eyre` where it was reported that colors are particularly dark on Windows https://github.com/yaahc/color-eyre/issues/12 The `color-backtrace` crate which `color-eyre` depends on fixes this issue by using...

Hi! This looks like an awesome crate to use for colours. One question though: could a non-windows version of `enable_ansi_support` be added to the crate? Ideally I'd rather not have...

I think `ansi_term` seems ready to use 1.0 versioning, and that would also help people consolidate on the same version. Currently, I see multiple versions in the same dependency trees,...

Some terminals support hyperlinks to URLs as a text style, defined at https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda . Add support for these escape sequences to ansi_term, storing the hyperlink target as an Option. This...

Hi, I've found that this is the most popular crate for ANSI terminal in Rust, however the last release was two years ago... There are also outstanding PRs, like one...

Hi, I have created a custom deserializer for `Colour`, after using the custom one, we can deserialize like below: ```json {"colour": "Red"} ``` ```json {"colour": 255} ``` ```json { "colour":...