This commit is contained in:
Kartik K. Agaram 2022-05-17 22:05:00 -07:00
parent 319617141b
commit 61845c335b
2 changed files with 2 additions and 1 deletions

View File

@ -2,3 +2,4 @@ Known issues:
* Touchpads can drag the mouse pointer using a light touch or a heavy click.
On Linux, drags using the light touch get interrupted when a key is pressed.
You'll have to press down to drag.
* No support yet for Unicode graphemes spanning multiple codepoints.

View File

@ -42,7 +42,7 @@ Cursor_line = 1
-- ^cursor_pos = 2
-- ...
-- ^cursor_pos past end of line is 15
Cursor_pos = #Lines[Cursor_line].data+1
Cursor_pos = #Lines[Cursor_line].data+1 -- in Unicode codepoints
Screen_width, Screen_height, Screen_flags = 0, 0, nil