mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-01 04:21:01 +01:00
19 lines
545 B
Rust
19 lines
545 B
Rust
/// A program that prints its own source code using the bat library
|
|
use bat::{PagingMode, PrettyPrinter, WrappingMode};
|
|
|
|
fn main() {
|
|
PrettyPrinter::new()
|
|
.header(true)
|
|
.grid(true)
|
|
.line_numbers(true)
|
|
.use_italics(true)
|
|
// The following line will be highlighted in the output:
|
|
.highlight(line!() as usize)
|
|
.theme("1337")
|
|
.wrapping_mode(WrappingMode::Character)
|
|
.paging_mode(PagingMode::QuitIfOneScreen)
|
|
.input_file(file!())
|
|
.print()
|
|
.unwrap();
|
|
}
|