1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-06-26 10:13:18 +01:00
This commit is contained in:
sharkdp
2020-04-22 20:53:53 +02:00
committed by David Peter
parent 0cde4e9121
commit 7a87315b94
2 changed files with 4 additions and 1 deletions

@ -223,6 +223,7 @@ impl<'a> InteractivePrinter<'a> {
if self.config.tab_width > 0 {
expand_tabs(text, self.config.tab_width, cursor)
} else {
*cursor += text.len();
text.to_string()
}
}