summaryrefslogtreecommitdiffstats
path: root/TOOLS/lua/autoload.lua
diff options
context:
space:
mode:
Diffstat (limited to 'TOOLS/lua/autoload.lua')
-rw-r--r--TOOLS/lua/autoload.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/TOOLS/lua/autoload.lua b/TOOLS/lua/autoload.lua
index 0c8c9a5381..1f22bb40e2 100644
--- a/TOOLS/lua/autoload.lua
+++ b/TOOLS/lua/autoload.lua
@@ -72,6 +72,11 @@ function find_and_add_entries()
return EXTENSIONS[string.lower(ext)]
end)
table.sort(files, function (a, b)
+ local len = string.len(a) - string.len(b)
+ if len ~= 0 then -- case for ordering filename ending with such as X.Y.Z
+ local ext = string.len(get_extension(a)) + 1
+ return string.sub(a, 1, -ext) < string.sub(b, 1, -ext)
+ end
return string.lower(a) < string.lower(b)
end)