ConfigAtom/snippets.cson
2018-09-10 23:27:26 +02:00

53 lines
1.1 KiB
Plaintext

# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# http://flight-manual.atom.io/using-atom/sections/basic-customization/#_cson
'.source.js':
'Console debug':
'prefix': 'debug'
'body': 'console.debug($1);'
'Console info':
'prefix': 'info'
'body': 'console.info($1);'
'Phaser class':
'prefix': 'classPhaser'
'body': """
class $1 extends Phaser.Scene {
constructor() {
super({
key: "$1"$2
});$3
}
preload() {
$4
}
create() {
$5
}
update() {
$6
}
}"""