diff options
author | Blaž Hrastnik | 2020-12-25 08:20:09 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-12-25 08:20:09 +0000 |
commit | 2ab069bb3fc815394cccca50378b62932f3146f5 (patch) | |
tree | ac0b3d13198d0a9c5b49a11d3c1f2555a30418b7 /helix-term/src/ui/editor.rs | |
parent | cd16df19c1f951e1ef0c560ae5e084b18bd2c713 (diff) |
lsp: Work on syncing the state with the language server.
Diffstat (limited to 'helix-term/src/ui/editor.rs')
-rw-r--r-- | helix-term/src/ui/editor.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 25221922..629cb85c 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -41,7 +41,8 @@ impl EditorView { self.render_buffer(view, area, surface, theme); // clear with background color - surface.set_style(viewport, theme.get("ui.background")); + // TODO: this seems to prevent setting style later + // surface.set_style(viewport, theme.get("ui.background")); let area = Rect::new(0, viewport.height - 2, viewport.width, 1); self.render_statusline(view, area, surface, theme); |