ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Multi​Edit​Utils

by philippotto ALL

A Sublime Text Plugin which adds various features for editing multiple selections.

Details

Installs

  • Total 24K
  • Win 15K
  • Mac 5K
  • Linux 4K
Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13
Windows 0 0 2 2 0 1 0 3 0 1 0 0 0 0 1 0 1 0 2 0 0 1 1 0 1 0 0 0 0 0 0 0 2 2 0 0 1 1 0 1 0 0 0 1 0 1
Mac 0 0 1 1 0 1 0 0 0 0 1 0 1 0 2 0 0 0 0 0 0 1 2 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 1 1 2 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 4 1 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Sublime MultiEditUtils test

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.

Features

Preserve case while editing selection contents

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.

Split the selection

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.

Extend the current selection with the last selection

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).

Normalize and toggle region ends

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.

Jump to last 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.

Cycle through the regions

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.

Strip selection

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.

Remove empty regions

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.

Quick Find All for multiple selections

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

Use selections as fields

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.

demo_selection_fields

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 if only_other is true.
    • "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 be true to jump forward and false to jump backward
  • only_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} },

Installation

Either use Package Control and search for MultiEditUtils or clone this repository into Sublime Text “Packages” directory.

Shortcut Cheat Sheet

multieditutilscheatsheetmain

Thank you @AllanLRH for creating this cheat sheet!

License

MIT © Philipp Otto