22 lines
593 B
Lua
22 lines
593 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"}
|
|
},
|
|
["luadebug"] = {
|
|
type = "luadebug",
|
|
entry = "test.lua",
|
|
cwd = ".",
|
|
lua = {"C:\\msys64\\msys2_shell.cmd", "-defterm", "-here", "-no-start", "-ucrt64", "-shell", "bash", "-c", "lua"},
|
|
},
|
|
},
|
|
default_target = "luadebug"
|
|
}
|