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

Recenter​Top​Bottom

by mburrows ST2

Sublime Text 2 plugin that cycles through scrolling the current line to the top, middle and bottom of the screen.

Details

  • 2012.03.27.20.12.53
  • github.​com
  • github.​com
  • 13 years ago
  • 1 hour ago
  • 13 years ago

Installs

  • Total 216
  • Win 67
  • Mac 78
  • Linux 71
Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10
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 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 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

RecenterTopBottom

A Sublime Text 2 plugin that cycles between moving the current line to the top, middle and bottom of the visible screen area.

Installation

  1. Open the Sublime Text 2 Packages folder:
- OS X: `~/Library/Application Support/Sublime Text 2/Packages/`
- Windows: `%APPDATA%/Sublime Text 2/Packages/`
- Linux: `~/.Sublime Text 2/Packages/`
  1. Clone this repo:
    git clone git://github.com/mburrows/RecenterTopBottom.git
    

Commands

This plugin provides a single command called recenter_top_bottom. Repeated calls to this command will move the current line to the top, middle and bottom of the visible screen area. The ordering can be customised using the settings file.

Keybindings

The default keybinding is similar to ctrl+l which is bound to the built in show_at_center command:

{ "keys": ["ctrl+alt+l"], "command": "recenter_top_bottom" }

Personally I override the show_at_center command with recenter_top_bottom, it provides all the functionality of the original command and more. This can be accomplished by putting the following in your Key Bindings - User file:

{ "keys": ["ctrl+l"], "command": "recenter_top_bottom" }

Settings

To change the ordering create a file called Packages/User/RecenterTopBottom.sublime-settings and redefine the recenter_positions setting as follows:

{
    "recenter_positions": ["middle", "top", "bottom"]
}