Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit e01be58

Browse files
authored
unicorntool: format with stylua
1 parent 68a8fac commit e01be58

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

unicorntool/init.lua

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
package.path = "/lib/?.lua;/lib/?;/lib/?/init.lua;" .. package.path
22
local unicorn = require("unicorn")
33

4-
local tArgs = {...}
4+
local tArgs = { ... }
55

66
local command = tArgs[1]
77
local target = tArgs[2]
88

99
local function complete()
10-
local completion = require "cc.shell.completion"
11-
shell.setCompletionFunction(shell.getRunningProgram(), completion.build(
12-
{ completion.choice, { "install", "uninstall" } }
13-
))
10+
local completion = require("cc.shell.completion")
11+
shell.setCompletionFunction(
12+
shell.getRunningProgram(),
13+
completion.build({ completion.choice, { "install", "uninstall" } })
14+
)
1415
end
1516

1617
complete()

0 commit comments

Comments
 (0)