Number Manipulation
manipulate multiple numbers in the document. Useful for writing .md files, snippets etc.
Details
Installs
- Total 602
- Win 273
- Mac 232
- Linux 97
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
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
README
This plugin lets you modify the numbers in your text document.
Use cases
Useful while writing .md files where suppose you are writing a ordered list and you decide to insert a new list element in between. Now you have to increase all the numbers below this element manually. Instead, after installing this plugin, you can do this easily:
- Select all those lines
- do a
ctrl-shift-L
to get multiple cursors - Press
Home
to go to the start of each line(where I assume the numbers are written) - 'ctrl-shift-p' -> “increment numbers”
P.S: I know you don't have to write correct numbers in your .md files but I like to keep it clean
Another Use case is when writing snippets. There are ${1}
kind of placeholders. What do you do if you want to insert a placeholder in between? You use my plugin!
Features
- Select Next Number :
ctrl-shift-P
->Select Next Number
. Selects the number immediately next to your cursor position(s)! Modify Numbers
- Increment :
ctrl-shift-P
->Increment Numbers
. Increments selected/just next numbers by 1 - Decrement :
ctrl-shift-P
->Decrement Numbers
. Decrements selected/just next numbers by 1 - Square :
ctrl-shift-P
->Square Numbers
. Squares selected/just next numbers by 1 - Double :
ctrl-shift-P
->Double Numbers
. Doubles selected/just next numbers by 1 - Sequence:
ctrl-shift-P
->Number Sequence
. Selected numbers are replaced by consecutive numbers, starting with the first value - Accumulation:
ctrl-shift-P
->Accumulate Selected Number(s)
. Selected numbers are replaced by the accumlating sum - Summation:
ctrl-shift-P
->Sum Up Selected Number(s)
. All selected numbers are replace by the total sum - Batch:
ctrl-shift-P
->Batch Number Manipulation
. Selected numbers are computed against the formula. Supported functions are:sin
,cos
,tan
,log
,e
andpi
. The variablex
will be substituted to the number selected. The variablei
will be substituted to the index of the selection (started from 0). Custom Modifications : bring up the console by ctrl- and type
view.run_command('modify_numbers',{"args":{"modifier_function":(lambda x: x**3)}) #change the function given by the lambda for custom modification
- Increment :