nmsmith22389 / vscode-incrementor

Advanced increment / decrement actions for (almost) anything.
13 stars 11 forks source link

Option to work with lowest, second lowest, etc position instead of 0.1, 1 and 10. #9

Closed KillyMXI closed 6 years ago

KillyMXI commented 6 years ago

I find 0.1 to be quite limiting. Usually, numbers are written with the precision that makes sense for them and can be taken into account.

1 -> 2 (lowest) 0.001 -> 0.002 (lowest) 0.16 -> 0.17 (lowest) 0.16 -> 0.26 (second lowest) 0.16 -> 1.16 (third lowest) 1 -> 101 (third lowest)

Number of positions after decimal point should be kept, obviously. 0.19 -> 0.20 -> 0.21 (lowest)

nmsmith22389 commented 6 years ago

This is a very good idea! I haven't had much time lately to work on this but it is definitely something I can look into adding. Thanks!