about summary refs log tree commit diff stats
path: root/run.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-03-25 11:30:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-03-25 11:30:25 -0700
commit1bd2846ec2d937e380e6456b359066c488832fdc (patch)
tree8b93358cfbb033ed3c08e77dc4d4cb1bbaf88508 /run.lua
parentaa8994167f06680beba998a08e8f4d782537d540 (diff)
parent0b1c47f79f71a9af77d042497c72d89a8d616ea2 (diff)
downloadtext.love-1bd2846ec2d937e380e6456b359066c488832fdc.tar.gz
Merge lines.love
Diffstat (limited to 'run.lua')
-rw-r--r--run.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/run.lua b/run.lua
index ea96a76..139f814 100644
--- a/run.lua
+++ b/run.lua
@@ -33,8 +33,14 @@ function run.initialize(arg)
     Text.redraw_all(Editor_state)
   end
   edit.check_locs(Editor_state)
+
+
+
+  -- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708
   love.window.setTitle('text.love - '..Editor_state.filename)
 
+
+
   if #arg > 1 then
     print('ignoring commandline args after '..arg[1])
   end
@@ -117,7 +123,14 @@ function run.file_drop(file)
   file:close()
   Text.redraw_all(Editor_state)
   edit.check_locs(Editor_state)
+
+
+
+  -- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708
   love.window.setTitle('text.love - '..Editor_state.filename)
+
+
+
 end
 
 function run.draw()