We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1e0317 commit f523c59Copy full SHA for f523c59
1 file changed
crates/emmylua_check/src/terminal_display/display.rs
@@ -286,22 +286,6 @@ impl TerminalDisplay {
286
print!("{}", error_part);
287
}
288
println!("{}", suffix);
289
-
290
- // Print indicator
291
- print!(" {:width$} │ ", "", width = line_num_width);
292
- for _ in 0..start_col {
293
- print!(" ");
294
- }
295
- if self.supports_color {
296
- print!("{}", level_color);
297
298
- for _ in start_col..std::cmp::max(start_col + 1, end_col) {
299
- print!("^");
300
301
302
- print!("\x1b[0m");
303
304
- println!();
305
} else {
306
// Start or end line of multi-line error
307
if self.supports_color {
0 commit comments