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 615
  • Win 326
  • Mac 145
  • Linux 144
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 Mar 14 Mar 13 Mar 12
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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 1 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 0 0 0 0 0
Linux 0 0 1 0 0 1 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 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.