A Sublime Text 2/3 Plugin which enhances editing of multiple selections. In case you aren't familar with Sublime's awesome multiple selection features, visit this page.
When multi-selecting all occurences of an identifier it is cumbersome to change it to another one if the case differs (camelCase, PascalCase, UPPER CASE and even cases with separators like snake_case, dash-case, dot.case etc.). The "Preserve case" feature facilitates this. Just invoke "Preserve case" via the command palette (or define an own keybinding) and type in the new identifier.
Sublime has a default command to split selections into lines, but sometimes you want to define your own splitting character(s). MultiEditUtils' split_selection
command (default keybinding is ctrl/cmd+alt+,) will ask you for a separator and split the selection using your input. An empty separator will split the selection into its characters.
Sometimes Sublime's standard features for creating multiple selections won't cut it. MultiEditUtils allows to select the desired parts individually and merge the selections with the add_last_selection
command (default keybinding is ctrl/cmd+alt+u).
When creating selections in Sublime, it can occur that the end of the selection comes before the beginning. This happens when you make the selection "backwards". To resolve this, you can normalize the regions with MultiEditUtils' normalize_region_ends
command (default keybinding is ctrl/cmd+alt+n). When executing this command a second time, all regions will be reversed.
This feature can also be very handy when you want to toggle the selection end of a single region.
When exiting multi selection mode, Sublime will set the cursor to the first region of your previous selection. This can be annoying if the regions were scattered throughout the current buffer and you want to continue your work at the last region. To avoid this, just execute MultiEditUtils' jump_to_last_region
command (default keybinding is shift+esc) and the cursor will jump to the last region.
In case you want to double check your current selections, MultiEditUtils' cycle_through_regions
command (default keybinding is ctrl/cmd+alt+c) will let you cycle through the active regions. This can come handy if the regions don't fit on one screen and you want to avoid scrolling through the whole file.
Sometimes selections contain surrounding whitespace which can get in the way of your editing. The strip_selection
command strips the regions so that this whitespace gets removed. The default keybinding is ctrl/cmd+alt+s.
When splitting your selection or performing other actions on your selection, it can happen that some regions are empty while others are not. Often only the non-empty regions are of interest. The remove_empty_regions
commands will take care of this and remove all empty regions from your current selection. The default keybinding is ctrl/cmd+alt+r.
Similar to the built-in "Quick Find All" functionality, MultiEditUtils provides a functionality which selects all occurrences of all active selections. By default, it will select the word the cursor is on, if the selection is empty, just like find_all_under
command. If you don't like this behaviour, add the argument "expand": false
These are just suggested keybindings, but you'll have to activate them in your keymap file first. Here shown for Windows/Linux:
ctrl+alt+f, ctrl+alt+f case: true word: true
ctrl+alt+f, c case: true
ctrl+alt+f, ctrl+c case: false
ctrl+alt+f, w case: true word: true
ctrl+alt+f, ctrl+w case: false word: true
ctrl+alt+f, q case: true word: true ignore_comments: true
Additionally, you can perform a regex search that finds all occurrences of the entered regex. It can be additive (applied on top of your current selection) or subtractive (removes the results of the search instead). Example keybindings:
ctrl+alt+f, r
ctrl+alt+f, ctrl+alt+r subtract: true
ctrl+alt+f, ctrl+r case : false
ctrl+alt+f, ctrl+alt+shift+r subtract: true case: false
Converts the selections to fields similar to the fields used in snippets. When the selection_fields
command is executed, all current selections are saved as fields, which can be activated one by one. The first field is activated automatically. You can jump to the next field with tab (or the default keybinding) and to the previous field with shift+tab. If you jump behind the last field or press escape all fields will be converted to proper selections again. If you press shift+escape all fields will be removed and the current selection remains unchanged.
You can bind this command to a keybinding by adding the following to your keymap (Change the key to the keybinding you prefer):
{ "keys": ["alt+d"], "command": "selection_fields" },
Although using one keybinding with the default options should be sufficient for most cases, additional modes and arguments are possible. Feel free to ignore or use them as you wish.
Arguments:
mode
("smart"
) is the executing mode, which defines the executed action. Possible modes are:"push"
to push the current selection as fields. This will overwrite already pushed fields."pop"
to pop the pushed fields as selections"remove"
to remove the pushed fields without adding them to the selection. This has the same behavior as pop ifonly_other
istrue
."add"
to add the current selection to the pushed fields"subtract"
to subtract the current selection from the pushed fields"smart"
to try to detect whether to push, pop or jump to the next field"toggle"
to pop if fields are pushed, else push the selections as fields."cycle"
to push or go next. This will cycle, i.e. go to the first if the last field is reached, never pops
jump_forward
(true
) can betrue
to jump forward andfalse
to jump backwardonly_other
(false
) ignores the current selection for pop and go next actions.
Suggestion for more keybindings based on the arguments:
// default use of selection_fields
{ "keys": ["alt+d"], "command": "selection_fields" },
// add the current selections as a fields
{ "keys": ["alt+a"], "command": "selection_fields", "args": {"mode": "add"} },
// jump and remove current selection in selection_fields
{ "keys": ["ctrl+alt+d"], "command": "selection_fields",
"args": {"mode": "smart", "only_other": true} },
// cancel selection_fields and remove current selection
{ "keys": ["ctrl+alt+shift+d"], "command": "selection_fields",
"args": {"mode": "toggle", "only_other": true} },
Either use Package Control and search for MultiEditUtils
or clone this repository into Sublime Text "Packages" directory.
Thank you @AllanLRH for creating this cheat sheet!
MIT © Philipp Otto