25 lines
437 B
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",
|
|
}
|
|
}
|
|
}
|