marta-issues
marta-issues copied to clipboard
gadgets array: Marco Parsing Error
trafficstars
Specifying commas to separate array elements for arguments or files in a gadget (as per docs), eg:
executable "test.sh"
args ["-s", "argument", "${active.selection.paths}"]
workingDirectory "${user.home}"
Is syntactically invalid, resulting in error in preferences:
Marco Parsing Error Invalid character: Marco does not use ',' as a separator

As far as I can tell this is a documentation issue as the following syntax works, and executes as separate arguments:
executable "test.sh"
args ["-s" "argument" "${active.selection.paths}"]
workingDirectory "${user.home}"
I also noticed this, the docs state , as separator, while in fact, you need a space.