jrowny / brackets-snippets

A brackets snippets extension
http://www.github.com/adobe/brackets
Other
129 stars 42 forks source link

added support for one line snippets with cursor #31

Closed vstirbu closed 10 years ago

vstirbu commented 10 years ago

Inserts one line snippet console.log(_); with correct cursor position (_is the cursor), from the following template:

[
    {
        "name": "Console log",
        "trigger": "log",
        "usage": "",
        "description": "Creates a console.log",
        "template": "console.log(!!{cursor});"
    }
]
zaggino commented 10 years ago

@jrowny This works great, good to merge.