Skip to content

Commit 08ab346

Browse files
committed
fix(scripts): default mappings should put a comma at the end of each line
1 parent 522bde4 commit 08ab346

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate_default_mappings.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ io.close(file)
7777
-- lua
7878
file = io.open("/tmp/DEFAULT_MAPPINGS.lua", "w")
7979
io.output(file)
80-
fmt = string.format(" { %%-%d.%ds %%s }\n", max_key_lua, max_key_lua)
80+
fmt = string.format(" { %%-%d.%ds %%s },\n", max_key_lua, max_key_lua)
8181
for _, m in pairs(outs_lua) do
8282
io.write(string.format(fmt, m.key, m.action))
8383
end

0 commit comments

Comments
 (0)