diff options
author | terminaldweller <devi@terminaldweller.com> | 2025-02-07 07:36:25 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2025-02-07 07:36:25 +0000 |
commit | f075960e6c8436951f8e6da667f1d8a4265d23fa (patch) | |
tree | 87d40061df15330f338443b473669e57704fa037 /plugins | |
parent | moves some functions to utils.go (diff) | |
download | milla-f075960e6c8436951f8e6da667f1d8a4265d23fa.tar.gz milla-f075960e6c8436951f8e6da667f1d8a4265d23fa.zip |
fixes #26, fixes #28, fixes #37, fixes #38
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/urban.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/urban.lua b/plugins/urban.lua index 7b7e71c..aaab985 100644 --- a/plugins/urban.lua +++ b/plugins/urban.lua @@ -65,7 +65,8 @@ function milla_urban(cli_args) for _, v in ipairs(json_response["list"]) do for kk, vv in pairs(v) do print(kk, vv) end if count > 0 then - result = result .. tostring(count) .. v["definition"] .. "----" + result = result .. tostring(count) .. " - " .. v["definition"] .. + " ---- " end count = count - 1 end |