Files
dotfiles/nvim/.config/nvim/lua/overseer/template/user/cargo_test.lua

25 lines
437 B
Lua

return {
name = "Cargog Test",
builder = function()
return {
cmd = {
"cargo"
},
args = {
"test",
},
components = {
{
"on_output_quickfix"
},
"default"
}
}
end,
condition = {
filetype = {
"rust",
}
}
}