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

Mithrilizer

by Bondifrench ALL

Sublime package for auto completions of usual Mithril methods

Details

  • 0.0.1
  • github.​com
  • github.​com
  • 10 years ago
  • 43 minutes ago
  • 10 years ago

Installs

  • Total 446
  • Win 185
  • Mac 180
  • Linux 81
Jan 21 Jan 20 Jan 19 Jan 18 Jan 17 Jan 16 Jan 15 Jan 14 Jan 13 Jan 12 Jan 11 Jan 10 Jan 9 Jan 8 Jan 7 Jan 6 Jan 5 Jan 4 Jan 3 Jan 2 Jan 1 Dec 31 Dec 30 Dec 29 Dec 28 Dec 27 Dec 26 Dec 25 Dec 24 Dec 23 Dec 22 Dec 21 Dec 20 Dec 19 Dec 18 Dec 17 Dec 16 Dec 15 Dec 14 Dec 13 Dec 12 Dec 11 Dec 10 Dec 9 Dec 8
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 1 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

Mithrilizer

Sublime package for auto completions of common Mithril methods
[Needs to be updated with Mithril 2.0 API]
Mithril is a client-side MVC lightweight Javascript framework created by Leo Horie

Installation

Package Control

  1. Open Package Control: Preferences -> Package Control
  2. Select Package Control: Install Package
  3. Type Mithrilizer into the search box and select the package to install it

Usage

Once installed, you need to be on a page with the syntax set to Javascript

m -> m()

will display:

m('div',{
    style: { }, 
    config: 'function name'
    },[
        'Children'
    ])

More details on the use of m() here

mi -> m('input')

will display:

m('input[type=]', oninput:, value: )

More details on the use of m() here

ma -> m('a')

m('a[href=/myroute]', {config: m.route}, 'Myroute')

More details on the use of m() here

mm -> Mithril module

Will display:

var mymodule = {};

mymodule.vm = 'Object literal {} or function Constructor'

mymodule.controller = function (options) {
    mymodule.vm.init();
};

mymodule.view = function (ctrl) {
    return 'view here';
}
m.module(document.body, mymodule);

More details on the use of m.module() here

mp -> m.prop()

Will display:

m.prop('initial value');

More details on the use of m.prop() here

mw -> m.withAttr()

Will display:

m.withAttr('string here', callback here)

More details on the use of m.withAttr() here

mro -> m.route()

Will display:

m.route({root Element, '/defaultRoute',
    '/route1': Module name

    });

m.route.mode = 'search/hash/pathname';

More details on the use of m.route() here

mreq -> m.request()

Will display:

m.request({
    method: 'GET/POST',
    url: '/user',
    dataType: ,
    callbackKey: ,
    type: ,
})

More details on the use of m.request() here

md -> m.deferred()

Will display:

m.deferred('initial value');

More details on the use of m.deferred() here

ms -> m.sync([])

Will display:

m.sync([
    Array of promises
]);

More details on the use of m.sync() here

mt -> m.trust()

Will display:

m.trust(content);

More details on the use of m.trust() here

mren -> m.render()

Will display:

m.render(root Element, [
    'Children elements'
]);

More details on the use of m.render() here

mrd -> m.redraw()

Will display:

m.redraw(true/false);

More details on the use of m.redraw() here

mrs -> m.redraw.strategy()

Will display:

m.redraw.strategy('all/diff/none');

More details on the use of m.redraw.strategy() here

mst -> m.startComputation() and m.endComputation()

Will display:

m.startComputation();

m.endComputation();

More details on the use of m.startComputation/m.endComputation here