diff options
author | Blaž Hrastnik | 2021-04-09 15:21:13 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-04-09 15:21:13 +0000 |
commit | 73f4abbb37e399cdb422fb723827d256142a9df3 (patch) | |
tree | edff5f0cc15ace84e41bd8427469becc641e3e6b /helix-term/src/ui | |
parent | 35b4fe4cd0a23310a3d71242e97ad6c1d081b7c2 (diff) |
N as extend with search (for now, N should be search_prev).
Diffstat (limited to 'helix-term/src/ui')
-rw-r--r-- | helix-term/src/ui/editor.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index d32f7864..35693d7b 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -61,6 +61,7 @@ impl EditorView { view.area.width - OFFSET, view.area.height.saturating_sub(1), ); // - 1 for statusline + self.render_buffer(doc, view, area, surface, theme, is_focused); // if we're not at the edge of the screen, draw a right border |