Mason ===== [![Join the chat at https://gitter.im/fmaj7/Mason](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fmaj7/Mason?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) Mason Syntax and Snippets for Sublime Text 2 ## Install Install via [Package Control](http://wbond.net/sublime_packages/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__ ```perl <%args> ${1} => ${2} ``` __class: <%class> block__ ```perl <%class> ${1} ``` __comp: <& &> tag__ ```perl <& "${1}"${2:, "$3" => $4} &> ``` __def: <%def> block__ ```perl <%def .${1}> <%args> ${2} <%perl> ${3} ``` __doc: <%doc> block__ ```perl <%doc> ${1} ``` __init: <%init> block__ ```perl <%init> ${1} ``` __mcomp: $m->comp()__ ```perl $m->comp("${1}"${2:, "$3" => $4}); ``` __method: <%method> block__ ```perl <%method ${1}> <%args> ${2} <%perl> ${3} ``` __once: <%once> block__ ```perl <%once> ${1} ``` __perl: <%perl> block__ ```perl <%perl> ${1} ```