Files
jpdebug/.lite_project.lua

16 lines
371 B
Lua

local config = require "core.config"
config.plugins.jpdebug = {
targets = {
["test - msys"] = {
type = "shell",
cmd = {"C:\\msys64\\msys2_shell.cmd", "-defterm", "-here", "-no-start", "-ucrt64", "-shell", "bash", "-c", "lua test.lua"}
},
["test"] = {
type = "shell",
cmd = {"lua", "test.lua"}
}
},
default_target = "test"
}