diff options
author | Erlend Lind Madsen <erlendf80@gmail.com> | 2020-10-29 13:32:04 +0100 |
---|---|---|
committer | Erlend Lind Madsen <erlendf80@gmail.com> | 2020-10-29 13:32:04 +0100 |
commit | a9c615d16cbb8b0203cce9d988f72ae7dd327cf3 (patch) | |
tree | 0afa43ec4ed6d80fad342855c7886124596b386b /init.lua | |
parent | 1ad44a9109e250a86f38415c90bbefe3f3e62da5 (diff) | |
download | vis-cursors-a9c615d16cbb8b0203cce9d988f72ae7dd327cf3.tar.gz |
change some spaces to tabs
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -45,11 +45,11 @@ function write_cursors() end table.sort(paths) -- buffer cursors string - local t = {} + local t = {} for i, path in ipairs(paths) do - table.insert(t, string.format('%s %d', path, cursors[path])) - end - local s = table.concat(t, '\n') + table.insert(t, string.format('%s %d', path, cursors[path])) + end + local s = table.concat(t, '\n') f:write(s) f:close() end |