|
in reply to Re^2: Perl Build System File for sublime text editor in thread Perl Build System File for sublime text editor
- Click "Preferences -> Browse Packages"
- Navigate to the "Perl" subfolder
- Create a file called "Perl.sublime-build" with the following content:
{ "cmd": ["perl", "-w", "$file"], "file_regex": ".* at (.) line ([
+0-9])", "selector": "source.perl" }
- Manually set the build system by clicking "Tools -> Build System -> Perl"
- You can now run your Perl script by mashing Ctrl+B
"re-"taken from http://stackoverflow.com/questions/12789975/setting-up-sublime-text-2-with-activeperl
|