This commit is contained in:
Igor Timofeev
2017-01-15 00:45:47 +03:00
parent c1c7ea1ba0
commit 50f3a2d58d
5 changed files with 6 additions and 7 deletions

View File

@@ -204,7 +204,8 @@ end
---------------------------------------------------- File processing methods ----------------------------------------------------
local function removeTabs(text)
return text:gsub("\t", string.rep(" ", mainWindow.codeView.indentationWidth))
local result = text:gsub("\t", string.rep(" ", mainWindow.codeView.indentationWidth))
return result
end
local function loadFile(path)