AsAbove
ST2 Plugin to duplicate characters from the line above
Details
Installs
- Total 2K
- Win 679
- Mac 511
- Linux 393
May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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
AsAbove is a Sublime Text 2 package which will duplicate the characters above your cursor or selection.
Installation
With Package Control
If you have the Package Control package installed, you can install JSDocs from inside Sublime Text itself. Open the Command Palette and select “Package Control: Install Package”, then search for AsAbove and you're done!
Without Package Control
Go to your Sublime Text 2 Packages directory and clone the repository using the command below:
git clone https://github.com/spadgos/sublime-AsAbove.git AsAbove
Don't forget to keep updating it, though!
Usage
The default hotkey to activate AsAbove is Ctrl+Shift+'
, however this can be configured in your local Default (...).sublime-keymap
file. The command is called as_above
.
Examples
Given the text below, and the cursor sitting at the position of the pipe (|
):
var Text = require('path/to/libraries/Text'),
User|
By activating AsAbove (Ctrl+Shift+'
) multiple times, you can duplicate the necessary parts of the line above easily.
var Text = require('path/to/libraries/Text'),
User = require('path/to/libraries/|
AsAbove works with selections, multiple cursors and multiple selections. With multiple selections/cursors, they are visited in a bottom-up order so that if there are selections on consecutive lines, the topmost line isn't copied down.
// before
foo
bar
qux
dah
// after making 3 selections on "bar", "qux" & "dah" and activating AsAbove
foo
foo
bar
qux