diff --git a/crates/nu-table/src/table.rs b/crates/nu-table/src/table.rs index 4ae9cf179e..b4c324374c 100644 --- a/crates/nu-table/src/table.rs +++ b/crates/nu-table/src/table.rs @@ -1062,7 +1062,7 @@ pub fn draw_table( ) -> String { // Remove the edges, if used let termwidth = if table.theme.print_left_border && table.theme.print_right_border { - termwidth - 2 + termwidth - 3 } else if table.theme.print_left_border || table.theme.print_right_border { termwidth - 1 } else {