BuildParts
This is a Sublime Text plugin for executing (or building) part of your code. (It should work for any language that the Sublime Text 2 originally can build)
Details
Installs
- Total 2K
- Win 840
- Mac 447
- Linux 216
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
BuildParts (version 0.3.0)
This is a Sublime Text plugin for executing (or building) part of your code.
Installation
Install using Package Control (Recommanded)
- I guess most Sublime Text 2 users are using Sublime Package Control. If not, please install it from here http://wbond.net/sublime_packages/package_control
- Go to Preference > Package Control, and Choose “Install Package”
- Choose the package named “BuildParts” to install it
- If BuildParts is not available from Package Control, you can go to Preference > Package Control, and Choose “Add Repository”. Put “https://github.com/erinata/BuildParts” (without quotes) to add the repo and try step 2 and 3 again.
Install manually
- Download the repo
- Copy everything in the repo to a folder named “BuildParts” under the package folder of SublimeText 2 (create it if it doesn't exist)
Usage
There is only one command: BuildParts: Build the selected code
When you select some code and invoke this command, this package will build the selected code using the currently chosen build system. If you have selected nothing, this package will build the whole file. (So that you still get the default Sublime Text build system behaviour)
BuildParts default keybindings are “ctrl+b” (for Windows and Linux) and “super+b” (for Mac). It's the same as the default keybinding for building your code. If you want to invoke the build system for the whole file. Just select nothing and press “ctrl+b”.
Example:
Suppose you have a document named hello.rb
Puts("Hello")
Puts("World")
Puts("Everyone")
Suppose you select the first 2 lines, and press “ctrl+b”, the package will only build the currently selected parts (which are first 2 lines in this case). The build output console will show:
Hello
World
It is useful when you want to execute several lines of your code (especially for interpreted language say Ruby) and see how it works.
If you select nothing and press “ctrl+b”, the package will involve the default behaviour in Sublime Text and build the whole file. The build output console will show:
Hello
World
Everyone
As BuildParts utilizes the build system in Sublime Text, it supports any language that Sublime Text can build. It also work with custom build systems that are installed via packages.
Limitation
BuildParts is not supporting multiple selections for now.
Operating Systems
I only tested this on Windows, I hope that it works on OSX and Linux.
License
Copyright © 2012 Tom Lam. MIT License.