delete some dead code
[?]
Sep 15, 2023, 8:33 PM
CEDTFKFDSYLATTFU5H5TWHJYBU6QIA2RD4EXXPC2BDU63DDGI6AQCDependencies
- [2]
ME7WBLF5bugfix: log filenames can have 2 formats - [3]
W6XUYQKPsource: show files in MRU order - [4]
6DYSB5DYbugfix: perform matches in the right order - [5]
KKMFQDR4editing source code from within the app - [6]
N7VXEGLGyet another bugfix in log parsing - [7]
ZTK4QTZTextract a couple of functions - [8]
AIBA4RWQhide cursor in log browser window
Change contents
- edit in log_browser.lua at line 38
line.filename = guess_source(line.filename) - edit in log_browser.lua at line 75
endfunction guess_source(filename)local possible_source = filename:gsub('%.lua$', '%.splua')if file_exists(possible_source) thenreturn possible_sourceelsereturn filenameend - replacement in commands.lua at line 132
local candidate = guess_source(s..'.lua')source.switch_to_file(candidate)source.switch_to_file(s..'.lua')