about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-08-15 16:07:32 -0700
committerKartik K. Agaram <vc@akkartik.com>2022-08-15 16:07:32 -0700
commiteba973369e0f94e1f89cb05643d7af51d7822568 (patch)
treec6cd1e88b9af5a784d21739569a82bd62656288b
parent333a0318d98866b6d34fc51f3eddb970457da1a5 (diff)
downloadview.love-eba973369e0f94e1f89cb05643d7af51d7822568.tar.gz
move
-rw-r--r--text.lua56
1 files changed, 28 insertions, 28 deletions
diff --git a/text.lua b/text.lua
index 27849bd..e46777e 100644
--- a/text.lua
+++ b/text.lua
@@ -82,6 +82,34 @@ function Text.draw_cursor(State, x, y)
   State.cursor_y = y+State.line_height
 end
 
+function Text.populate_screen_line_starting_pos(State, line_index)
+  local line = State.lines[line_index]
+  if line.mode ~= 'text' then return end
+  local line_cache = State.line_cache[line_index]
+  if line_cache.screen_line_starting_pos then
+    return
+  end
+  -- duplicate some logic from Text.draw
+  if line_cache.fragments == nil then
+    Text.compute_fragments(State, line_index)
+  end
+  line_cache.screen_line_starting_pos = {1}
+  local x = State.left
+  local pos = 1
+  for _, f in ipairs(line_cache.fragments) do
+    local frag, frag_text = f.data, f.text
+    -- render fragment
+    local frag_width = App.width(frag_text)
+    if x + frag_width > State.right then
+      x = State.left
+      table.insert(line_cache.screen_line_starting_pos, pos)
+    end
+    x = x + frag_width
+    local frag_len = utf8.len(frag)
+    pos = pos + frag_len
+  end
+end
+
 function Text.compute_fragments(State, line_index)
 --?   print('compute_fragments', line_index, 'between', State.left, State.right)
   local line = State.lines[line_index]
@@ -914,34 +942,6 @@ function Text.previous_screen_line(State, loc2)
   end
 end
 
-function Text.populate_screen_line_starting_pos(State, line_index)
-  local line = State.lines[line_index]
-  if line.mode ~= 'text' then return end
-  local line_cache = State.line_cache[line_index]
-  if line_cache.screen_line_starting_pos then
-    return
-  end
-  -- duplicate some logic from Text.draw
-  if line_cache.fragments == nil then
-    Text.compute_fragments(State, line_index)
-  end
-  line_cache.screen_line_starting_pos = {1}
-  local x = State.left
-  local pos = 1
-  for _, f in ipairs(line_cache.fragments) do
-    local frag, frag_text = f.data, f.text
-    -- render fragment
-    local frag_width = App.width(frag_text)
-    if x + frag_width > State.right then
-      x = State.left
-      table.insert(line_cache.screen_line_starting_pos, pos)
-    end
-    x = x + frag_width
-    local frag_len = utf8.len(frag)
-    pos = pos + frag_len
-  end
-end
-
 -- resize helper
 function Text.tweak_screen_top_and_cursor(State)
 --?   print('a', State.selection1.line)