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

Mark​And​Move

Allows for keyboard-only multiple selections. Select some stuff, mark it, then move the cursor around and add more marks, recall marks, or move between marks.

Details

Installs

  • Total 3K
  • Win 1K
  • Mac 1K
  • Linux 564
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 Feb 12 Feb 11 Feb 10 Feb 9 Feb 8 Feb 7 Feb 6 Feb 5 Feb 4
Windows 0 0 0 0 0 0 0 0 0 0 0 0 1 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 1 0 0 1 0 0 0
Mac 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

MarkAndMove

Allows for keyboard-only multiple selections. Select some stuff, mark it, then move the cursor around and add more marks, recall marks, or move between marks.

Installation

  1. Using Package Control, install “MarkAndMove”

Or:

  1. Open the Sublime Text Packages folder

    • OS X: ~/Library/Application Support/Sublime Text 3/Packages/
    • Windows: %APPDATA%/Sublime Text 3/Packages/
    • Linux: ~/.Sublime Text 3/Packages/ or ~/.config/sublime-text-3/Packages
  2. clone this repo

  3. Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)

Example

In this video you can watch the user create 3 cursors (using ctrl+m), then activate those three cursors by pressing ctrl+m again after the third cursor is created.

example

Thank you to @paradox460 for creating this GIF!

TextCommands

mark_and_move_save

Adds the current selection or cursor position to the list of marks.

mark_and_move_next

Moves to the next mark. “Next mark” is defined as the first mark after the first current region, or the first mark if none are found (aka wraps).

mark_and_move_prev

Moves to the previous mark. “Previous mark” is defined as the first mark before the first current region, or the last mark if none are found (aka wraps).

mark_and_move_recall

Selects and clears all the marks.

mark_and_move_clear

Removes the marks, but doesn't affect cursor position.

And the command with the mostest:

mark_and_move_do_it_all

Adds, recalls, and clears marks using one command.

The logic is this:

  1. If the cursor(s) are not in the set of marks, add it (mark_and_move_save).
  2. If some of the cursors are in the set, but not all, recall the marks (mark_and_move_recall)
  3. If all the marks are already selected, clear them and leave the cursors (mark_and_move_clear)

So ctrl+m like crazy, and on the last one press ctrl+m twice, once to add it and once to select the marks. Then press it a third time and WHOOSH the marks are cleared, ready to start anew.

WindowCommands

mark_and_move_window_select

Displays a picker so that you can bind two open files. The other file will be opened. goto: false disables this feature. The first time you do this, the two files will be bound to each other. However, if the other file is already bound, it will not be bound to the current view. You can create “rings” this way, or have multiple files point to one file.

If you have some text selected, it will bind those regions. For example, you might bind a django views.py file to the corresponding models.py, but you could bind specific view functions to templates, so depending on where the cursor is located you will go to a different file.

Bindings are stored on the window, so as long as you don't close the project, you should retain your bindings.

mark_and_move_window_toggle

If the current view is bound, it goes to the other view. If it isn't bound, this command delegates to mark_and_move_window_select.

TODO

  • Have file-to-file bindings persist between sessions. Can this be stored in a project config?