diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2023-12-26 11:29:52 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2023-12-26 11:29:52 -0800 |
commit | 2b1c48c08e55247cac35c9cb4cdbd1ae10b91fd9 (patch) | |
tree | af7c0e0e439c89932db2e230798a190f88cb8130 /text.lua | |
parent | 35bc6106aa64e9efefbdf49cc93e4e8e269d4bee (diff) | |
parent | e36559d264616cc8bc10ebbfcc429663c17fb7aa (diff) | |
download | view.love-2b1c48c08e55247cac35c9cb4cdbd1ae10b91fd9.tar.gz |
Merge lines.love
Diffstat (limited to 'text.lua')
-rw-r--r-- | text.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/text.lua b/text.lua index f1f6e48..f07cf48 100644 --- a/text.lua +++ b/text.lua @@ -771,7 +771,8 @@ function Text.nearest_pos_less_than(line, x) end function Text.x_after(s, pos) - local offset = Text.offset(s, math.min(pos+1, #s+1)) + local len = utf8.len(s) + local offset = Text.offset(s, math.min(pos+1, len+1)) local s_before = s:sub(1, offset-1) --? print('^'..s_before..'$') return App.width(s_before) |