ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Mod​JS - Java​Script Workflow Tooling

by yuanyan ST2

Mod for Sublime Text

Details

  • 2013.06.21.17.21.23
  • github.​com
  • github.​com
  • 11 years ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 551
  • Win 331
  • Mac 151
  • Linux 69
May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

sublime-mod

Mod for Sublime Text

Getting Started

Install package control

First, install Package Control for Sublime Text 2: * Sublime Package Control: this is the easiest way to install this package * After installing Package Control, restart Sublime Text.

Install sublime-mod

Option #1: Install module using package control

  • Now inside Sublime Text open the Command Palette (command+shift+p on OS X, or ctrl+shift+p on Linux/Windows).
  • Select “Package Control: Install Package”, after a few seconds a list will appear. Search for sublime-mod and click to install.

Option #2: Install module directly

If you weren't able to find the package on Package Control, go to your Sublime Text Packages directory, located here: * OS X: ~/Library/Application Support/Sublime Text 2/Packages/ * Linux: ~/.Sublime Text 2/Packages/ * Windows: %APPDATA%/Sublime Text 2/Packages/

Add the sublime-mod module:

Without Git: Download the latest source zip from github and extract the files into a new folder inside your Sublime Text “Packages” directory.

With Git: Clone the repository in your Sublime Text “Packages” directory:

git clone git://github.com/yuanyan/sublime-mod.git

Modfile

Add a Modfile to in your project root.

Build System > Mod

  • In Sublime Text 2, go to Tools > Build System, and select Mod as your build system
  • To build: ctrl + b on Linux/Windows or command + b on OS X

build-on-save

To enable build-on-save, you first have to save your project in Sublime Text by going to Project > Save Project As. Then go to your project folder and settings line from the example below to your myProject.sublime-project file.

For each project that you want to take advantage of this feature, you will have to modify the the .sublime-project file.

Build Settings

In your project folder

{
  "folders":
  [
    { "path": "/C/path-to-your-project-here" }
  ],
  "settings": { "build_on_save": 1 }
}

To build on save, keep the value at 1. To disable build on save, change the value to 0.

A build-on-save word of caution

Running mod every time you hit ctrl + s will be a great productivity booster when used wisely. But if you have lots of processor-intensive tasks that take more than a few seconds to run, this feature might get annoying pretty fast.