mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-21 20:38:44 +00:00
13 lines
333 B
Rust
13 lines
333 B
Rust
/// How to print non-printable characters with
|
|
/// [crate::config::Config::show_nonprintable]
|
|
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
|
|
#[non_exhaustive]
|
|
pub enum NonprintableNotation {
|
|
/// Use caret notation (^G, ^J, ^@, ..)
|
|
Caret,
|
|
|
|
/// Use unicode notation (␇, ␊, ␀, ..)
|
|
#[default]
|
|
Unicode,
|
|
}
|