mirror of
https://github.com/sharkdp/bat.git
synced 2024-12-01 20:24:03 +01:00
8 lines
194 B
Rust
8 lines
194 B
Rust
|
#[macro_export]
|
||
|
macro_rules! bat_warning {
|
||
|
($($arg:tt)*) => ({
|
||
|
use ansi_term::Colour::Yellow;
|
||
|
eprintln!("{}: {}", Yellow.paint("[bat warning]"), format!($($arg)*));
|
||
|
})
|
||
|
}
|