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

Mvt​Assign It

by steveosoule ALL

Sublime Text Plugin to convert Toolkit, Toolbelt, and Sebenza Tools variable assignments into Miva's default mvt:assign

Details

  • 2014.11.19.02.17.22
  • github.​com
  • github.​com
  • 10 years ago
  • 2 hours ago
  • 10 years ago

Installs

  • Total 171
  • Win 109
  • Mac 52
  • Linux 10
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 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 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
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 1 0 0 2 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 1 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

MvtAssign It - Sublime Text Plugin

Sublime Text plugin allows you to convert Toolkit, Toolbelt, and Sebenza Tools variable assignments into Miva's default mvt:assign.

Demo

For Example

This:

<mvt:item name="toolkit" param="sassign|foo|bar" />
<mvt:item name="toolkit" param="vassign|foo|l.all_settings:bar" />
<mvt:item name="toolkit" param="mvassign|foo|'bar' $ '!'" />
<mvt:item name="ry_toolbelt" param="assign|g.foo|toupper('bar')" />
<mvt:item name="sebenzatools" param="var|foo|'bar'" />

Becomes:

<mvt:assign name="g.foo" value="'bar'" />
<mvt:assign name="g.foo" value="l.settings:bar" />
<mvt:assign name="g.foo" value="'bar' $ '!'" />
<mvt:assign name="g.foo" value="toupper('bar')" />
<mvt:assign name="g.foo" value="'bar'" />

Features

  • Use keyboard shortcut: Ctrl + M while tags are selected
  • Automatically converts l.all_settings variable references to l.settings
  • Convert multiple items at once
  • Works with Sublime Text 2 & Sublime Text 3
  • Works on:
    • Toolkit
      • sassign <mvt:item name="toolkit" param="sassign|foo|bar" />
      • vassign <mvt:item name="toolkit" param="vassign|foo|l.all_settings:bar" />
      • mvassign <mvt:item name="toolkit" param="mvassign|foo|'bar' $ '!'" />
    • Toolbelt
      • assign <mvt:item name="ry_toolbelt" param="assign|g.foo|'bar'" />
    • Sebenza Tools
      • var <mvt:item name="sebenzatools" param="var|foo|'bar'" />

Installation Instructions

via Package Control

  1. Ctrl + Shft + P to bring up the Command Palette
  2. Select the, “Package Control: Install Package” option
  3. Search & select the, “MvtAssign It” package

via GitHub

  1. Clone or unzip this repo into your Sublime Text Packages directory: C:\Users\YOUR_USERNAME\AppData\Roaming\Sublime Text 2\Packages.
  2. You should now have a new directory: C:\Users\YOUR_USERNAME\AppData\Roaming\Sublime Text 2\Packages\MvtAssignIt

Usage Instructions

  1. Select the toolkit item(s)
  2. Use keyboard shortcut Crtl + M (or Ctrl + Shft + P to bring up the Command Palette and select the “MvtAssign It” option)
  3. Voila, your item has been converted!

Why is this important?

Simply put, mvt:assign is faster.

Using the /benchmark/benchmark.mvt code I tested how long it would take to iterate through an mvt:while loop for N numbers of times. At the maximum recorded number (10,000) mvt:assign was roughly 20 seconds faster than Toolbelt & Sebenza Tools' assign and 25 seconds faster than Toolkit's mvassign!

Iterations mvt:assign Toolbelt Sebenza Tools Toolkit
1 0.000171 sec. 0.000361 sec. 0.000945 sec. 0.000574 sec.
10 0.000164 sec. 0.001613 sec. 0.002193 sec. 0.001843 sec.
100 0.000309 sec. 0.018862 sec. 0.027008 sec. 0.022553 sec.
1,000 0.001952 sec. 0.135798 sec. 0.166441 sec. 0.184801 sec.
10,000 0.021111 sec. 1.313019 sec. 1.656581 sec. 1.675808 sec.
100,000 0.232023 sec. 20.041977 sec. 21.763862 sec. 25.186679 sec.
1,000,000 1.956414 sec. 3000* sec. 3000* sec. 3000* sec.

* 5 min. timeout was reached