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

In which file exactly did you do the formatting, and where can I find it? Do you have to perform the changes before the installation of sublime text or is it possible to do it afterwards? Thank you!
  • Comment on Re^2: Perl Build System File for sublime text editor

Replies are listed 'Best First'.
Re^3: Perl Build System File for sublime text editor
by Anonymous Monk on Sep 05, 2016 at 20:49 UTC
    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
      Works! Thank you! :-)