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

Goto​End​Of​Line​Or​Scope

by SublimeText ST3

Sublime Text plugin to bind a key (for example the end key) to move/extend the cursor/selection(s) to the end of the line, or to before the specified scope (i.e. a comment) at the end of the line

Details

Installs

  • Total 621
  • Win 328
  • Mac 148
  • Linux 145
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 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 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 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

Readme

Source
raw.​githubusercontent.​com

GoToEndOfLineOrScope

Sublime Text plugin to move the cursor(s) to the end of the line, or to before the specified scope at the end of the line.

Features

This plugin allows you to create key bindings that will:

  • Go to the end of the line, or
  • Go to the start of the specified scope that is at the end of the line
  • Go to the start of the closest token to the end of the line that matches the specified scope

To explain:

You have a line like: foo bar # I am a comment You want to bind the End key, so that when you press it, the cursor will either go to the end of the line or to just before the start of the comment marker, depending where the cursor is and your preferences. i.e. foo bar |# I am a comment, foo bar| # I am a comment or foo bar # I am a comment| where | represents the cursor.

It works with multiple cursors, and each key binding can use a different scope, and a different order. For example, you might want the cursor to go to the start of the comment after any whitespace, then to the end of the line. Or you might want the cursor to go to the end of the line, then to the start of the comment before any whitespace. At the same time, you might want a different key binding to jump the cursor to just before the semi-colon at the end of the line.

Binding

The command is called move_to_end_of_line_or_before_specified_scope, and it accepts the following arguments: - scope - the scope to move the cursor before, if it is at the end of the line - extend - whether or not to extend the selection - eol_first - whether or not the cursor should go to the end of the line first or the beginning of the specified scope. Note that with word wrapped lines, as this plugin emulates the default End key behavior of going to hard EOL when at a soft EOL, setting this argument to true with word wrap enabled will make the command act like the default move_to { "to": "eol" } command. Suggestions for how to improve this behavior is welcome. For now, you can use auto which is equivalent to true if word_wrap is off or the line is unwrapped, and false if word_wrap is enabled. This is perhaps not ideal because the cursor location isn't consistent, hence the request for suggestions. Going to EOL first is the preferred default because it is easier for muscle memory to press it twice to get to the start of a comment than to press it once, expecting to be at EOL and finding oneself at a comment. It may be useful to get into the habit of pressing Ctrl+Enter instead of End followed by Enter to get a new line below the current one, then perhaps a more sane default would be false… - before_whitespace - whether or not the cursor should go to the beginning of any whitespace that occurs immediately before the specified scope - find_only_at_eol - whether or not to search backwards from the end of the line to find the given scope. If true, just checks at EOL.