Can I specify working directory for sublime-menu’s?
“working_dir” does not seem to work with exec command, can I use this for a menu entry?
i tried
{
"caption": "testCommand",
"command": "exec",
"args":
{
"cmd": "${packages}/test"
}
}
and
{
"caption": "testCommand",
"working_dir": "${packages}",
"command": "exec",
"args":
{
"cmd": "./test"
}
}
it only works when the file is relative to the current file, i.e., it behaves as if “working_dir” was ignored.
thank you