Request: Numbering plugin
Posted: Tue Jul 31, 2007 9:44 pm
Can you please make a numbering plugin, that any time you submit it, it writes the next number?
For example I want to make a macro that works like this:
(Home, #, Call Plugin, Space, Down arrow)
And here's the result:
||
V
I suggest parameters like:
current number (changes when using the plugin), maximum and minimum, difference size (can also be negative), number of duplicates.
Examples:
And for display, parameter like:
minimum chars, filling char, right or left filling.
Examples
Thank you in advance.
P.S you can also add an option to choose the base (Decimal, Octal etc.).
For example I want to make a macro that works like this:
(Home, #, Call Plugin, Space, Down arrow)
And here's the result:
Code: Select all
Things to buy:
Bread
Milk
Newspaper
V
Code: Select all
Things to buy:
#1 Bread
#2 Milk
#3 Newspaper
current number (changes when using the plugin), maximum and minimum, difference size (can also be negative), number of duplicates.
Examples:
Code: Select all
current=2, maximum=5, minimum=1, difference=1, number of duplicates=1.
2,3,4,5,1,2,3...
current=2, maximum=5, minimum=1, difference=-1, number of duplicates=2.
2,2,1,1,5,5,4,4...
current=3, maximum=5, minimum=1, difference=2, number of duplicates=1.
2,4,1,3,5...
minimum chars, filling char, right or left filling.
Examples
Code: Select all
minimum=1
1,2,3,4...
minimum=2, char=0, left.
01,02,03...09,10,11...99,100...
minimum=3, char=space, right.
1, 2, 3... 9, 10... 99,100
P.S you can also add an option to choose the base (Decimal, Octal etc.).