aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/ui
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r--helix-term/src/ui/editor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index d86b0793..7d97c2ba 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -85,8 +85,8 @@ impl EditorView {
for y in area.top()..area.bottom() {
surface
.get_mut(x, y)
- // .set_symbol(tui::symbols::line::VERTICAL)
- .set_symbol(" ")
+ .set_symbol(tui::symbols::line::VERTICAL)
+ //.set_symbol(" ")
.set_style(border_style);
}
}