Skip to content

Instantly share code, notes, and snippets.

@drboyer
Created September 10, 2015 19:35
Show Gist options
  • Save drboyer/ea7544dac26787849c47 to your computer and use it in GitHub Desktop.
Save drboyer/ea7544dac26787849c47 to your computer and use it in GitHub Desktop.
Sublime Text Build System: Runs `perl -c` on a Perl script to check its syntax. You can also run the script (though it will not accept any additional arguments) using the Build: Run feature.
{
"selector": "source.perl",
"cmd": ["perl", "-c", "$file"],
"variants": [
{ "name": "Run",
"cmd": ["perl", "$file"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment