summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/highlighters.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/highlighters.cc b/src/highlighters.cc
index 2de9c6bb..51758b6b 100644
--- a/src/highlighters.cc
+++ b/src/highlighters.cc
@@ -820,7 +820,7 @@ struct WrapHighlighter : Highlighter
win_line += wrap_count + 1;
// scroll window to keep cursor visible, and update range as lines gets removed
- while (buf_line < cursor.line and setup.cursor_pos.line >= win_height)
+ while (setup.window_pos.line < cursor.line and setup.cursor_pos.line >= win_height)
{
auto removed_lines = 1 + line_wrap_count(setup.window_pos.line++);
setup.cursor_pos.line -= removed_lines;