We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e41e88 commit 32f9925Copy full SHA for 32f9925
src/repl.rs
@@ -2131,9 +2131,7 @@ impl ReplState {
2131
let first_line = entry.lines().next().unwrap_or(entry.as_str());
2132
let is_multiline = entry.contains('\n');
2133
if is_multiline {
2134
- println!(
2135
- "\x1b[2m[{num:>4}]\x1b[0m {first_line} \x1b[2m(...)\x1b[0m"
2136
- );
+ println!("\x1b[2m[{num:>4}]\x1b[0m {first_line} \x1b[2m(...)\x1b[0m");
2137
} else {
2138
println!("\x1b[2m[{num:>4}]\x1b[0m {entry}");
2139
}
0 commit comments