Last active
March 25, 2021 14:48
-
-
Save thundernixon/588273076abfee345ad17c21a6b70389 to your computer and use it in GitHub Desktop.
Run RoboFont script from VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run in RoboFont", | |
"type": "shell", | |
"command": "robofont", | |
"args": [ | |
"-p", | |
"${file}" | |
], | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
} | |
] | |
} |
Hi Stephen, I'm attempting to use this command and I'm getting this result:
zsh: parse error near `()'
The terminal process "/bin/zsh '-c', 'robofont -p '/Users/eat/Library/Application Support/RoboFont/scripts/info.py' -c 'from mojo.UI import OutputWindow' -c OutputWindow().show()'" terminated with exit code: 1.
Do you know what does it mean?
Thank you in advance.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you wish to bring up the RoboFont Output Window when you run the script (for instance, to view the result of
print()
statements), update the task'sargs
list to: