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

Mason

by guanghao479 ALL

Mason Syntax and Snippets for Sublime Text 2

Details

  • 2017.03.21.05.24.07
  • github.​com
  • github.​com
  • 8 years ago
  • 1 hour ago
  • 13 years ago

Installs

  • Total 1K
  • Win 409
  • Mac 600
  • Linux 317
Feb 5 Feb 4 Feb 3 Feb 2 Feb 1 Jan 31 Jan 30 Jan 29 Jan 28 Jan 27 Jan 26 Jan 25 Jan 24 Jan 23 Jan 22 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
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 1 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

Mason

Join the chat at https://gitter.im/fmaj7/Mason

Mason Syntax and Snippets for Sublime Text 2

Install

Install via Package Control

File Types Supported

.m .mi .mc .md autohandler dhandler mhtml

Goto Symbol

Any named block defined by <%def>, <%method> and <%closure>

Snippets [trigger: details]

args: <%args> block

<%args>
  ${1} => ${2}
</%args>

class: <%class> block

<%class>
  ${1}
</%class>

comp: <& &> tag

<& "${1}"${2:, "$3" => $4} &>

def: <%def> block

<%def .${1}>
  <%args>
    ${2}
  </%args>

  <%perl>
    ${3}
  </%perl>
</%def>

doc: <%doc> block

<%doc>
  ${1}
</%doc>

init: <%init> block

<%init>
  ${1}
</%init>

mcomp: $m->comp()

$m->comp("${1}"${2:, "$3" => $4});

method: <%method> block

<%method ${1}>
  <%args>
    ${2}
  </%args>

  <%perl>
    ${3}
  </%perl>
</%method>

once: <%once> block

<%once>
  ${1}
</%once>

perl: <%perl> block

<%perl>
  ${1}
</%perl>