Incrementor
A Sublime Text 2 Plugin that can generate a sequence of numbers using search and replace.
Details
Installs
- Total 9K
- Win 5K
- Mac 3K
- Linux 1K
Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 2 | 2 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 2 | 0 | 3 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 1 | 5 | 0 | 4 | 2 | 1 | 1 | 0 | 1 | 0 | 1 | 0 | 1 |
Mac | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 2 | 0 | 2 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 2 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 |
Linux | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Text 2 Plugin: The Incrementor
A Sublime Text 2 Plugin that can generate a sequence of numbers using search and replace.
There is a Sublime Text 3 port available here.
Example (Before):
10. Bob
12. Larse
15. Billy
Find:
[0-9]+\.
Replace:\i\.
Example (After):
1. Bob
2. Larse
3. Billy
You can also take start and step arguments \i(start,step)
in parenthesis.
Example (Before):
10. Bob
12. Larse
15. Billy
Find:
[0-9]+\.
Replace:\i(10,10)\.
Example (After):
10. Bob
20. Larse
30. Billy
Lastly, The Incrementor also supports negative steps! \i(start,-step)
Example (Before):
10. Bob
12. Larse
15. Billy
Find:
[0-9]+\.
Replace:\i(100,-10)\.
Example (After):
100. Bob
90. Larse
80. Billy
Using
Use the Command Palette (Ctrl+Shift+P
) and search for Incrementor: Generate a sequence of numbers
to prompt for your find and replace.
Installing
Use Github here or Sublime Package Control
Linux:
Copy the directory to: "~/.config/sublime-text-2/Packages"
Windows 7:
Copy the directory to: "C:\Users\<username>\AppData\Roaming\Sublime Text 2\Packages"
Windows XP:
Copy the directory to: "C:\Documents and Settings\<username>\Application Data\Sublime Text 2\Packages"
Todo
- Replace based on order of selection as well as their direction. (Difficult)
- Scroll to matching pattern like sublime's default find window. (Easy)
- Allow prepending 0s to the initial number. (001, 002, 003, 004, etc.) (Intermediate)
- Add number of replaced items in statusbar after completion. (Intermediate)
Contributors
Don't forget to add yourself!
eBook Architects, Chris, Toby, AJ