atom / snippets

Atom snippets package
MIT License
205 stars 100 forks source link

Allow option for each snippet as to whether it is expanded when spacebar, rather than tab is pressed #201

Open vjpr opened 8 years ago

vjpr commented 8 years ago

E.g.

a is<press-spacebar> b

becomes:

a === b

In the snippets.cson:

  '===':
    'prefix': 'is'
    'body': '=== '
    'activation-key': 'space'

This is similar functionality offered by IntelliJ Live Templates.