in reply to Re^2: Perl Build System File for sublime text editor
in thread Perl Build System File for sublime text editor

  1. Click "Preferences -> Browse Packages"
  2. Navigate to the "Perl" subfolder
  3. Create a file called "Perl.sublime-build" with the following content:
    { "cmd": ["perl", "-w", "$file"], "file_regex": ".* at (.) line ([ +0-9])", "selector": "source.perl" }
  4. Manually set the build system by clicking "Tools -> Build System -> Perl"
  5. 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

Replies are listed 'Best First'.
Re^4: Perl Build System File for sublime text editor
by Anonymous Monk on Sep 06, 2016 at 21:23 UTC
    Works! Thank you! :-)