about summary refs log tree commit diff stats
path: root/search.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-07-25 09:49:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-07-25 09:49:26 -0700
commit3265abacb42056742803d7e2a42a2757ce7984c0 (patch)
treeb7ce7eb2c568af5a53fdf7357ddbdc09195e30f1 /search.lua
parent6f74f95a46b173f7b4f8c04e5821dc348191192e (diff)
downloadlines.love-3265abacb42056742803d7e2a42a2757ce7984c0.tar.gz
bugfix: skip over drawings when searching
Diffstat (limited to 'search.lua')
-rw-r--r--search.lua23
1 files changed, 15 insertions, 8 deletions
diff --git a/search.lua b/search.lua
index 2e86688..41d2b8f 100644
--- a/search.lua
+++ b/search.lua
@@ -22,18 +22,25 @@ function Text.draw_search_bar(State)
 end
 
 function Text.search_next(State)
+  local pos
   -- search current line
-  local pos = State.lines[State.cursor1.line].data:find(State.search_term, State.cursor1.pos)
-  if pos then
-    State.cursor1.pos = pos
+  local line = State.lines[State.cursor1.line]
+  if line.mode == 'text' then
+    pos = line.data:find(State.search_term, State.cursor1.pos)
+    if pos then
+      State.cursor1.pos = pos
+    end
   end
   if pos == nil then
     for i=State.cursor1.line+1,#State.lines do
-      pos = State.lines[i].data:find(State.search_term)
-      if pos then
-        State.cursor1.line = i
-        State.cursor1.pos = pos
-        break
+      local line = State.lines[i]
+      if line.mode == 'text' then
+        pos = State.lines[i].data:find(State.search_term)
+        if pos then
+          State.cursor1.line = i
+          State.cursor1.pos = pos
+          break
+        end
       end
     end
   end