``` '.source.js': 'Console log as cl': 'prefix': 'cl' 'body': """ console.log($1) """ '.source.coffee': 'Console log as cl': 'prefix': 'cl' 'body': """ console.log $1 """ 'Console log as cl>>>': 'prefix': 'cl>' 'body': """ console.log '>>>>>>>>>>>>>>>>>>>>>>' """ 'Console log as cl<<<': 'prefix': 'cl<' 'body': """ console.log '<<<<<<<<<<<<<<<<<<<<<<' """ 'for in': 'prefix': 'for' 'body': """ for $1 in $2 $3 """ 'class': 'prefix': 'class' 'body': """ class $1 constructor: ($2) -> $3 module.exports = $1 """ 'method': 'prefix': 'method' 'body': """ $1: ($2) -> $3 """ 'var varable': 'prefix': 'var' 'body': """ $1 = $2 """ 'comment param': 'prefix': '@param' 'body': """ @param $1 [$2] $3 """ 'comment return': 'prefix': '@return' 'body': """ @return $1 [$2] $3 """ 'Comments': 'prefix': '##' 'body': """ ### $1 ${3:@param $5 [$6] $7 }${4:@return [$8] $9 }### $10 """ 'code comment': 'prefix': '/**' 'body': """ ### $1 ### """ 'words length': 'prefix': 'len' 'body': "length" ```