From 7e133167ca18e126d52939a717f6f34511068b3c Mon Sep 17 00:00:00 2001
From: Pascal Kuthe <pascalkuthe@pm.me>
Date: Sun, 19 Nov 2023 22:34:08 +0100
Subject: [PATCH] remove redudant/incorrect view bound check

---
 helix-view/src/view.rs | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/helix-view/src/view.rs b/helix-view/src/view.rs
index 4aea98a7..a5654759 100644
--- a/helix-view/src/view.rs
+++ b/helix-view/src/view.rs
@@ -393,11 +393,6 @@ impl View {
         text: RopeSlice,
         pos: usize,
     ) -> Option<Position> {
-        if pos < self.offset.anchor {
-            // Line is not visible on screen
-            return None;
-        }
-
         let viewport = self.inner_area(doc);
         let text_fmt = doc.text_format(viewport.width, None);
         let annotations = self.text_annotations(doc, None);