/Super-Calculator

Sublime Text plugin for performing quick inline calculations with a simple keypress (Alt+C).

Primary LanguagePythonMIT LicenseMIT

Super Calculator

About

Super Calculator is a plugin for Sublime Text 2 and Sublime Text 3 which lets you do inline calculations with a few keypresses. This is useful for example to subtract paddings from your widths in your CSS code.

Usage

All you need to do is to press Alt+C and Super Calculator will select the mathematical expression closest to the cursor position so you can review what is going to be calculated. A second time Alt+C calculates the result and inserts it right away. Nice!

Keep Expressions Mode

This mode allows to keep the expression after calculate the result.

Behavior Expression result
Default 5 + 5 10
Keep Expressions 5 + 5 5 + 5 = 10

You can activate the Keep Expressions Mode setting "keep_expressions" to true in your sublime-settings file

Configuration

By default, Super Calculator rounds the result down to two decimals. However, you can specify the number of decimals you would like in the user settings file for Super Calculator. The settings files can be found by navigating to Preferences -> Package Settings -> Super Calculator.

Installation

With Package Control: The easiest way to install Super Calculator is by using the Package Control plugin.

Without Git: Download the latest source from GitHub and copy the Super Calculator folder to your Sublime Text "Packages" directory.

With Git: Clone the repository in your Sublime Text "Packages" directory:

git clone https://github.com/Pephers/Super-Calculator.git

The "Packages" directory can be found in the following locations:

  • OS X:

      ~/Library/Application Support/Sublime Text 2/Packages/
      ~/Library/Application Support/Sublime Text 3/Packages/
    
  • Linux:

      ~/.config/sublime-text-2/Packages/
      ~/.config/sublime-text-3/Packages/
    
  • Windows:

      %APPDATA%/Sublime Text 2/Packages/
      %APPDATA%/Sublime Text 3/Packages/