Rails Partial
For Sublime Text 2 and 3 - Rails Partial makes creating partials in your Rails app a breeze! Simply select a block of code in your Rails view or stylesheet files and hit the shortcut key!
Details
Installs
- Total 17K
- Win 3K
- Mac 8K
- Linux 6K
Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text 2 and 3 plugin: Rails Partial
Makes creating Rails Partials a breeze. Quickly create a blank Partial, or select text and create the partial instantly!
Sublime Text 3 Update: ST3 is now supported through the ST3 branch. When using ST3 and package control, the package control should automatically download the correct branch based on your version of Sublime Test. If you would like to intall this plugin in ST3 without Package Control, simply download or clone the contents of the ST3 branch into your ST3 plugins directory.
Shortcut Keys
There are two shortcuts, “Create Partial”, and “Create Partial and Open”. The latter option simply loads the partial into Sublime Text after creating it.
Windows / OSX / Linux:
ALT+P
- Create PartialSHIFT+ALT+P
- Create Partial and Open
How to Use
The following instructions are all done inside your Rails Apps's view (.erb, .html, .haml, .slim) or stylesheet (.css, .scss, .sass) files.
Creating a Partial from Code
- Select the block of code you wish to put into a partial and hit the Shortcut Key
- Name the Partial (the preceding underscore and the file extension is not required)
- Hit
Enter
. Done! Your partial is located in the same directory as your original file.
Creating a Blank Partial
If you do not select any code before hitting the shortcut key, this plugin will simply create a blank partial file and insert the render/import code in your view/stylesheet as appropriate.
Creating Partials in other directories
If you wish to create your partial in a different directory, simply type the directory name followed by a slash and the partial name. For example:
To create a partial inside of app/views/shared/_partial_name.html.erb (a common directory belonging for your views), you would type: shared/partial_name
. You could also enter common/partial_name
as well as somedir/subdir/partial_name
.
Importing Stylesheets
The same methods above can be applied to your .css, .scss/.sass files. Try it out!
Limitations
This plugin has support for the following file types: - Markup: .erb, .html, .haml, .slim - Stylesheet: .css, .scss, .sass.
This list will possibly be expanded in the future. If you would like support for other files, please submit an issue or an pull request.
Installation
You have two options, we'll start with the preferred installation method, Package Control.
Package Control
The easiest and preferred way to of installing this plugin is with Package Control.
- Ensure Package Control is installed and Sublime Text 2 has been restarted.
- Open the Command Palette (Command+Shift+P on OS X, Control+Shift+P on Linux/Windows).
- Select “Package Control: Install Package”
- Select Rails Partial when the list appears.
Package Control will automatically keep Rails Partial up to date with the latest version.
Git
This method required a little more work, but simply clone this repo into your Sublime Text 2 Package directory.
$ git clone git://github.com/wesf90/rails-partial.git "Rails Partial"
Further instructions below.
Windows XP, 7, 8, and 10
Execute the commands below one by one in your Command prompt.
$ cd "%APPDATA%\Sublime Text 2\Packages"
$ git clone git://github.com/wesf90/rails-partial.git "Rails Partial"
Linux
Execute the commands below one by one in your terminal.
$ cd ~/.config/sublime-text-2/Packages/
$ git clone git://github.com/wesf90/rails-partial.git "Rails Partial"