Skip to content

Commit 18917c3

Browse files
committed
fix(Rust) Cargo now reported as (Rust compiler → Cargo build) to follow our naming conventions.
1 parent 6dde91d commit 18917c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lua/compiler/languages/rust.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ function M.action(selected_option)
139139
end
140140
elseif selected_option == "option5" then
141141
local task = overseer.new_task({
142-
name = "- Cargo",
142+
name = "- Rust compiler",
143143
strategy = { "orchestrator",
144144
tasks = {{ "shell", name = "- Cargo build & run → " .. "Cargo.toml",
145145
cmd = "cargo build " .. -- compile
@@ -149,7 +149,7 @@ function M.action(selected_option)
149149
vim.cmd("OverseerOpen")
150150
elseif selected_option == "option6" then
151151
local task = overseer.new_task({
152-
name = "- Cargo",
152+
name = "- Rust compiler",
153153
strategy = { "orchestrator",
154154
tasks = {{ "shell", name = "- Cargo build → " .. "Cargo.toml",
155155
cmd = "cargo build " .. -- compile
@@ -159,7 +159,7 @@ function M.action(selected_option)
159159
vim.cmd("OverseerOpen")
160160
elseif selected_option == "option7" then
161161
local task = overseer.new_task({
162-
name = "- Cargo",
162+
name = "- Rust compiler",
163163
strategy = { "orchestrator",
164164
tasks = {{ "shell", name = "- Cargo run → " .. "Cargo.toml",
165165
cmd = "cargo run " .. -- compile

0 commit comments

Comments
 (0)