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

Super​Select

by manafire ALL

Extended Sublime selection capabilities

Details

  • 2014.07.04.18.29.53
  • github.​com
  • github.​com
  • 10 years ago
  • 33 minutes ago
  • 11 years ago

Installs

  • Total 2K
  • Win 838
  • Mac 577
  • Linux 218
Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 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
Windows 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 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0
Mac 1 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0
Linux 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SuperSelect

Extended selection functionality such as select previous match, skip to next(or prev) match, and invert selection.

See this 30 second vid for a brief demo. outdated - missing sequential select demos

Installation

With Package Control:

  1. Run the “Package Control: Install Package” command, find and install SuperSelect plugin.
  2. Restart Sublime (if required)

OR:

  1. Open the Sublime Text 3 Packages folder (change path for ST2 if needed)
    • OS X: ~/Library/Application Support/Sublime Text 3/Packages/
    • Windows: %APPDATA%/Sublime Text 3/Packages/
    • Linux: ~/.Sublime Text 3/Packages/
  2. Clone this repo
  3. Configure your keybindings, if required

Commands

  • expand_prev ⌘+shift+,: Looks backwards and selects the next match of current selection or selects current word if nothing selected.
  • expand_next ⌘+shift+.: Looks forwards and selects the next match of current selection or selects current word if nothing selected.
  • skip_and_select_prev ⌘+shift+alt+,: Skips over current selection (de-selects) and moves backwards to select next match.
  • skip_and_select_next ⌘+shift+alt+.: Skips over current selection (de-selects) and moves forwards to select next match.
  • invert_selections ⌘+shift+i: Inverts current selections, restricted to matching regions.
  • select_sequential_string ⌘+shift+0: Selects other strings resembling the current selection that have trailing digit(s). “Sequential” might be misleading as there is no actual checking for this - I just look for digit(s). (If you have a better name for this, I'd love to hear it.)
  • select_strict_sequential_string ⌘+shift+1: Like select sequential string, but actually checks for proper sequence (I should probably rename that). If you have “Item 5” selected, this will select “Item 6”, “Item 7”, …, excluding regions that don't match the sequence (e.g. if “Item 99” appeared between 6 and 7. Note: Invert selections will invert the selection to 99 currently).

TODO

  • Different colour indicators to show selection end-points. It's easy to get lost once we start skipping.
  • Update video to show 'sequential' selection and 'strict sequential' selection modes.
  • select sequential string