A lightweight plugin that creates a method from the highlighted text and saves it to your clipboard.
Windows / OSX / Linux:
ALT+M
- Extract Method
- Select the block of code you wish to put into a method and hit the Shortcut Key (
Alt+M
) - Name the method
- Hit
Enter
- Move your cursor to where you want to put the method, and hit
Shift+Ctrl+V
(paste with indent)
Hint: You can also redefine Ctrl+V
as paste_with_indent
, which will make this plugin a little more intuitive.
You have two options, the easier of which is to install this package through Package Control.
####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 Ruby Extract Method when the list appears.
Congratulations! The package is now installed on your system.
$ git clone git://github.com/pashamur/ruby-extract-method.git RubyExtractMethod
Further instructions below.
Execute the commands below one by one in your Command prompt.
$ cd "%APPDATA%\Sublime Text 2\Packages"
$ git clone git://github.com/pashamur/ruby-extract-method.git "RubyExtractMethod"
Execute the commands below one by one in your terminal.
$ cd ~/.config/sublime-text-2/Packages/
$ git clone git://github.com/pashamur/ruby-extract-method.git RubyExtractMethod
The plugin does not currently support multiple selections. If you select more than one block, only the first one will be used in method creation.