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

Increment Selection

by yulanggong ALL

Add a number to each selection in Sublime Text, incremented once per selection

Details

  • 2017.09.19.10.21.01
  • github.​com
  • github.​com
  • 7 years ago
  • 27 minutes ago
  • 11 years ago

Installs

  • Total 52K
  • Win 28K
  • Mac 16K
  • Linux 8K
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 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5
Windows 4 1 4 5 5 4 8 5 2 2 1 1 4 3 6 1 1 8 2 3 2 6 0 3 6 3 4 7 4 2 1 4 6 3 4 5 0 3 4 4 3 1 5 1 1 4
Mac 3 2 0 0 1 0 2 3 2 0 2 2 0 2 3 4 2 1 3 2 0 2 0 1 3 3 1 1 2 0 1 5 1 4 3 6 1 2 1 0 2 0 5 1 2 1
Linux 1 0 1 0 1 0 1 0 0 0 1 1 2 0 2 1 1 1 1 1 0 0 2 1 0 2 3 2 0 0 1 0 2 1 1 1 0 2 2 1 1 0 0 0 1 0

Readme

Source
raw.​githubusercontent.​com

Increment Selection

Add a number to each selection in Sublime Text, incremented once per selection. You may also insert the number of line containing the selection by using the '#' symbol.

This plugin is based on Riccardo Marotti's answer on StackOverflow. The default hotkey is ctrl alt i or cmd ctrl i.

Usage

Place the cursors where you need:

Insert the number the counter should start from (in this case 1):

Select the number you typed (shift <—):

Type the shortcut:

Examples

Tips: [] stands for a selection, | stands for a caret.

[1] text [1] text [1] -> 1| text 2| text 3|

[a] text [a] text [a] -> a| text b| text c|

[A] text [A] text [A] -> A| text B| text C|

[01] text [01] text [01] -> 01| text 02| text 03|

[05,2] text [05,2] text [05,2] -> 05| text 07| text 09|

[5,-1] text [5,-1] text [5,-1] -> 5| text 4| text 3|

[a,3] text [a,3] text [a,3] -> a| text d| text g|

Increment follows the difference between the first and second element:

[10] text [9] text [1] -> 10| text 9| text 8|   

[a] text [c] text [a] -> a| text c| text e|

Generate line numbers:

[#] line -> 1| line
[#] line -> 2| line
[#] line -> 3| line
[#] line -> 4| line
[#] line -> 5| line