Skip to content

vengin/SublimeCalculate

 
 

Repository files navigation

Calculate

Select a formula and run calculate to evaluate it using python. The result is appended to the selection (1+1 => 1+1 = 2). Using the replace: true option replaces the selected text with the result. If you have zero selections, you will be prompted for a formula, and the result will be inserted.

Any function from math and random libraries can be used (math and random documentation).

You can generate passwords using pwd(len) (or password(len)). You can calculate averages (mean) using avg([values]) (or average([values])). If you need to use a counter, you can use the i variable. Every selection will increase the counter, and it starts at 0.

i  =>  0        i*i  =>  0        (i+1)*10  =>  10
i  =>  1        i*i  =>  1        (i+1)*10  =>  20
i  =>  2        i*i  =>  4        (i+1)*10  =>  30

There is also a calculate_count command, used to count from 1 (or another index, see below) and incrementing at every cursor.

Installation

  1. Using Package Control, install "Calculate"

Or:

  1. Open the Sublime Text Packages folder

    • OS X: ~/Library/Application Support/Sublime Text 3/Packages/
    • Windows: %APPDATA%/Sublime Text 3/Packages/
    • Linux: ~/.Sublime Text 3/Packages/ or ~/.config/sublime-text-3/Packages
  2. clone this repo

  3. Install keymaps for the commands (see Example.sublime-keymap for my preferred keys)

Commands

  • calculate: Calculates the selection(s), or prompts for a formula. If replace is false it leaves the content.
  • calculate_count: Counts, adding 1 to the initial index, over each selection.
    • If the first selection is a number, it is used as the initial index.
    • Hexadecimal (0xNNNN) and octal (0NNNN) are matched, too.
    • If it is a letter, the alphabet is used.
    • Otherwise 1 is used, or it can be passed in as an argument to the command (index: N).

Keybindings

Open your key bindings file and add the bindings you want. For example:

Example.sublime-keymap
[
    { "keys": ["ctrl+shift+="], "command": "calculate", "args": {"replace": false} },
    { "keys": ["ctrl+shift+c"], "command": "calculate", "args": {"replace": true} },
    { "keys": ["ctrl+shift+alt+1"], "command": "calculate_count" }
]

About

Select a formula and evaluate it using python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%