Expand Selection to Function (JavaScript)
Expands the current selection to the enclosing JavaScript function.
Details
Installs
- Total 11K
- Win 7K
- Mac 3K
- Linux 2K
Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Mac | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Expand Selection to Function (JavaScript)
A command to expand the current selection to the enclosing JavaScript function. This works with named and anonymous functions.
Each time this command runs it will expand farther out. For anonymous functions, the local variable or property name that refers to the function can also be selected. For example, expanding from the alert
line below will first select the anonymous function (as represented with the «angle quotes»):
var foobar = «function() {
alert('Example!')
}»;
Running it again will then select the variable and trailing semicolon:
«var foobar = function() {
alert('Example!')
};»
After expanding, you can restore the last selection, which will contract the selection back to what it was before. You can expand several times then restore several times to return to your original selection, which is useful for quickly visualizing the scope of deeply nested functions.
Usage
Both commands are available in the Selection
menu and bound to the following keyboard shortcuts on Windows and Linux:
Expand Selection to Function (JavaScript) Alt+Up
Restore Last Selection Alt+Down
Or similarly, on OS X:
Expand Selection to Function (JavaScript) ⌥↑ (Option+Up)
Restore Last Selection ⌥↓ (Option+Down)
Compatibility
Compatible with both Sublime Text 2 and Sublime Text 3.
Version History
1.0.4 (6/4/2024)
- Support comment between function name and opening brace.
- Switched to semantic version numbers for future updates.
1/3/2015
- Support for ES 6 fat arrow functions (with braces) courtesy of Cheng Lou.
- Fixed typos in the keyboard shortcuts in this README.
The Past
- Initial version.