Skip to content

Commit 81e82c6

Browse files
author
Charles Chiu
committed
style: stylue check
1 parent bb9d479 commit 81e82c6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lua/modules/ui/fidget.lua

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ require("fidget").setup({
2929
end,
3030
-- function to format each task line
3131
task = function(task_name, message, percentage)
32-
return string.format("%s%s [%s]", message, percentage and string.format(" (%s%%)", percentage) or "", task_name)
32+
return string.format(
33+
"%s%s [%s]",
34+
message,
35+
percentage and string.format(" (%s%%)", percentage) or "",
36+
task_name
37+
)
3338
end,
3439
},
3540
-- sources = { -- Sources to configure

0 commit comments

Comments
 (0)