about summary refs log tree commit diff stats
path: root/commands.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-09-15 13:33:26 -0700
committerKartik K. Agaram <vc@akkartik.com>2023-09-15 13:33:26 -0700
commit6ed60848a4d2bca5a2c64e18d58671d973ee6479 (patch)
tree6592b5af5774ef4fcc492208244931753af03440 /commands.lua
parent76f119b7b996c5751a42bf09b1a234b98aa6d48b (diff)
downloadlines.love-6ed60848a4d2bca5a2c64e18d58671d973ee6479.tar.gz
delete some dead code
This is a holdover from the days of bifold text.
Diffstat (limited to 'commands.lua')
-rw-r--r--commands.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/commands.lua b/commands.lua
index 512992d..4e891ef 100644
--- a/commands.lua
+++ b/commands.lua
@@ -129,8 +129,7 @@ end
 
 function navigate_to_file(s)
   move_candidate_to_front(s)
-  local candidate = guess_source(s..'.lua')
-  source.switch_to_file(candidate)
+  source.switch_to_file(s..'.lua')
   reset_file_navigator()
 end