Fix Command_Open jumping to beginning every time

This commit is contained in:
Krzosa Karol
2025-05-13 09:11:42 +02:00
parent f7f2aafc56
commit 2e9147c47d
3 changed files with 11 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ function IsAlpha(a)
end
function SkipLineAndColumn(s)
local line, col = "1", "1"
local line, col = "-1", "-1"
function parse_line_and_column(line_and_col, delimiter)
ic, jc = line_and_col:find(delimiter)