diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-05-27 23:35:01 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-05-27 23:35:01 -0700 |
commit | 229e1514f27e7c48ca20873199aa7b55e72e3dc8 (patch) | |
tree | dc37dd2fd3483d8e60e2a501abb62d7d79372bbe | |
parent | f4235a1741ef7927147d53adae1adf8584fdfe0d (diff) | |
download | text.love-229e1514f27e7c48ca20873199aa7b55e72e3dc8.tar.gz |
.
-rw-r--r-- | main.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua index 0dd6d5f..f22b908 100644 --- a/main.lua +++ b/main.lua @@ -53,8 +53,8 @@ Lines = {{mode='text', data=''}} -- -- Most of the time we'll only persist positions in schema 1, translating to -- schema 2 when that's convenient. -Cursor1 = {line=1, pos=1} -- position of cursor Screen_top1 = {line=1, pos=1} -- position of start of screen line at top of screen +Cursor1 = {line=1, pos=1} -- position of cursor Screen_bottom1 = {line=1, pos=1} -- position of start of screen line at bottom of screen Cursor_x, Cursor_y = 0, 0 -- in pixels |