fix: use more widely available box character for indent guides
The standard box chars are rendered properly in more terminals.
This commit is contained in:
parent
f631b672c4
commit
7b9a4fd586
1 changed files with 1 additions and 1 deletions
|
@ -1007,7 +1007,7 @@ pub const Editor = struct {
|
||||||
},
|
},
|
||||||
.indent => {
|
.indent => {
|
||||||
c.set_style(theme.editor_whitespace);
|
c.set_style(theme.editor_whitespace);
|
||||||
_ = n.cell_load(c, if (leading) if (buf_col % self.indent_size == 0) "⎸" else " " else " ") catch {};
|
_ = n.cell_load(c, if (leading) if (buf_col % self.indent_size == 0) "│" else " " else " ") catch {};
|
||||||
},
|
},
|
||||||
else => {
|
else => {
|
||||||
_ = n.cell_load(c, " ") catch {};
|
_ = n.cell_load(c, " ") catch {};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue