diff options
author | Blaž Hrastnik | 2021-06-29 16:01:28 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-29 16:01:28 +0000 |
commit | e9159887a9119f146095fec9603e654c549a688c (patch) | |
tree | 5950390ffe8ca026beafc9a4168029ff50773f2e /helix-term/src | |
parent | c2a292ecf3109ea3a3cd08cf84b1d83ae5a16f2d (diff) |
ui: Use a box drawing character vertical line for splits
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/ui/editor.rs | 4 |
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); } } |