ExpandRegion
Like “Expand Selection to Scope”. But better!
Details
Installs
- Total 13K
- Win 6K
- Mac 5K
- Linux 2K
Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | Aug 22 | Aug 21 | Aug 20 | Aug 19 | Aug 18 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 2 | 0 | 2 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 3 | 4 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 2 | 1 | 1 |
Linux | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 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
ExpandRegion for Sublime Text
Like “Expand Selection to Scope”. But better!
ExpandRegion works a bit like the build in “Expand Selection to Scope”, however it does not depend on Scopes (Scopes are used by ST to “understand” code, i.e. for syntax highlighting). Therefore selection expansion can be more granular and customizable.
It works similar to ExpandRegion for Emacs and “Structural Selection” (Control-W) in the JetBrains IDE's (i.e. IntelliJ IDEA).
Prereleases
Pre-releases help us to test new features and improve the stability of releases. You can benefit the newest features and help us testing them. Just open Preferences > Package Settings > Package Control > Settings - User and insert at a reasonable (correct JSON syntax) position:
"install_prereleases": ["ExpandRegion"],
If you also use pre-releases of other packages just add them comma separated into the list.
Example
JavaScript (should also work for other c'ish languages like Java).
- Expand selection to word
- Expand selection to quotes (content only)
- Expand selection to quotes (with quotes)
- Expand selection to square braces
- Expand selection to expression
- Expand selection to content of braces (all arguments in this case)
- Expand selection to line
- Expand selection to function body (w/o curly brace)
- Expand selection to function body (with curly brace)
and so on…
Python
Behaves similar to JavaScript, but also depends on indentation:
- Expand selection to word
- Expand selection to parentheses (content only)
- Expand selection to parentheses (with parentheses)
- Expand selection to function call
- Expand selection to line (w/o indent)
- Expand selection to indentation
- Expand selection to block start before indentation
- Expand selection to indentation
- Expand selection to block start before indentation
- Expand selection to indentation
- Expand selection to block start before indentation
and so on…
HTML
- Expand selection to word
- Expand selection to quotes (content only)
- Expand selection to quotes (with quotes)
- Expand selection to complete self closing tag
- Expand selection to parent node content
- Expand selection to complete node
- Expand selection to parent node content
and so on…
LaTeX (thx r-stein)
- Expand selection to word
- Expand selection to command
- Expand selection to command arguments
- Expand selection to brackets (content only)
- Expand selection to brackets (with brackets)
- Expand selection to surrounding command
- Expand selection to surrounding environment (content only)
- Expand selection to surrounding environment (whole)
- Expand selection to surrounding environment (content only)
- Expand selection to surrounding environment (whole)
and so on…
Installing
With the Package Control plugin: The easiest way to install ExpandRegion is through Package Control, which can be found at this site: http://wbond.net/sublime_packages/package_control
Once you install Package Control, restart ST and bring up the Command Palette (Command+Shift+P
on OS X, Control+Shift+P
on Linux/Windows). Select “Package Control: Install Package”, wait while Package Control fetches the latest package list, then select ExpandRegion when the list appears. The advantage of using this method is that Package Control will automatically keep ExpandRegion up to date with the latest version.
Without Git: Download the latest source from GitHub and copy the ExpandRegion folder to your Sublime Text “Packages” directory.
With Git: Clone the repository in your Sublime Text “Packages” directory:
git clone https://github.com/aronwoost/sublime-expand-region.git ExpandRegion
The “Packages” directory is located at:
OS X:
~/Library/Application Support/Sublime Text 2/Packages/
Linux:
~/.config/sublime-text-2/Packages/
Windows:
%APPDATA%/Sublime Text 2/Packages/
Using
- Set a shortcut. Open “Key Bindings - User” and add to following line: “ js { "keys”: [“super+shift+space”], “command”: “expand_region” }, { “keys”: [“super+u”], “command”: “expand_region”, “args”: {“undo”: true}, “context”: [{ “key”: “expand_region_soft_undo” }] },
Note: third party plugins can not properly hook into the history. So soft-undo in basically only a undo expand selection. Soft-redo will not work.
## Develop
## Background
This plugin is inspired by the amazing [expand-region for Emacs](https://github.com/magnars/expand-region.el).
Here a video showing this feature (in Emacs):
[![](http://img.youtube.com/vi/_RvHz3vJ3kA/0.jpg)](http://www.youtube.com/watch?v=_RvHz3vJ3kA?feature=player_embedded&v=M)
Read more:
[Extend Selection by Semantic Unit](http://ergoemacs.org/emacs/syntax_tree_walk.html)
## License
MIT