turbo-editors/configspublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/turbo-editors/configs.git
git clone ssh://git@rickub.com/turbo-editors/configs.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

tools.toml · 47 lines · 1009 BTOML Blame HistoryRaw
🛟 Updated. cd4c4c7 k33g 10h ago1# turbo-go tools.
2
3[[tool]]
4name = "~F~ormat"
5command = "gofmt -l -w ."
6output = "popup"
7
8[[tool]]
9name = "~L~int"
10command = "go vet ./..."
11output = "popup"
12
13[[tool]]
14name = "~B~uild"
15command = "go build ./..."
16output = "popup"
17
18[[tool]]
19name = "~T~est"
20command = "go test ./..."
21output = "popup"
22
23[[tool]]
24name = "~R~un"
25command = "go run ."
26# A terminal, not a popup: a program that reads the keyboard has to be able to be answered,
27# and one that runs long has to be able to be interrupted.
28output = "terminal"
29
30# A tool that asks for a value: {{double braces}} opens a box before it runs,
31# and what you type is shell-quoted, so a name with a space stays one argument.
32[[tool]]
33name = "~G~rep"
34command = "grep -rn {{pattern}} --include='*.go' ."
35output = "editor"
36
37[[tool]]
38name = "~I~nit module"
39command = "go mod init {{module path}}"
40output = "popup"
41
42# A tool naming a `menu` gets a menu of its own on the bar.
43[[tool]]
44name = "~E~cho"
45command = "echo 🎉 tada!"
46menu = "Tools"
47output = "terminal"