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

Number Manipulation

by prongs ST2

manipulate multiple numbers in the document. Useful for writing .md files, snippets etc.

Details

  • 2015.05.07.06.09.13
  • github.​com
  • github.​com
  • 8 years ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 602
  • Win 273
  • Mac 232
  • Linux 97
Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13
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:

  1. Select all those lines
  2. do a ctrl-shift-L to get multiple cursors
  3. Press Home to go to the start of each line(where I assume the numbers are written)
  4. '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

  1. Select Next Number : ctrl-shift-P -> Select Next Number. Selects the number immediately next to your cursor position(s)!
  2. 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 and pi. The variable x will be substituted to the number selected. The variable i 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