Files
OpenRA/interpreters/estrelaeditor.lua
crazybutcher e104bf9dcc
2009-03-23 16:37:13 +00:00

13 lines
443 B
Lua

return {
name = "Estrela Editor",
description = "Estrela Editor as run target (IDE development)",
fcmdline = function(filepath)
return ide.editorFilename and '"'..ide.editorFilename..'" '..(filepath or "")..' -cfg "singleinstance=false;"' or nil
end,
fprojdir = function(fname)
return fname:GetPath(wx.wxPATH_GET_VOLUME)
end,
fworkdir = function() end, -- better not
capture = false,
nohide = true,
}