Quantcast
Channel: Atom Editor: multiple snippets - Stack Overflow
Browsing all 7 articles
Browse latest View live

Answer by fktmjohn1 for Atom Editor: multiple snippets

With proper indentation your snippets will work just fine. No need for extra commaSince the file is in cson format similar to json file. You can write your snippets like below. WhereEach scope (e.g....

View Article



Answer by user8909781 for Atom Editor: multiple snippets

I had the same problem, here is the fix:'.source.js':'First function':'prefix': 'first''body': """ function $1() { var overall = true; if (overall) { var result = {}; result.test1 = ""; return...

View Article

Answer by kiko carisse for Atom Editor: multiple snippets

Found a weird bug with multiple snippets in Atom. I'm hoping this answer can help someone with the same problem (I am using the mac version of Atom). So I went to add a new snippet to the snippets.cson...

View Article

Answer by Aqueel Aboobacker VP for Atom Editor: multiple snippets

Starting the next snippet with a comma followed with new line by giving same structure as of the first one worked for me.'.source.php':'var dump':'prefix': 'vd''body': """ echo "<pre>";...

View Article

Answer by psergiocf for Atom Editor: multiple snippets

In addition to @Lee's explanation, here's an example if you wan't to setup multiple snippets organized by programming language:# HTML Snippets'.text.html':'HTML Comment':'prefix': '<!''body':...

View Article


Answer by Lee for Atom Editor: multiple snippets

The configuration file format is called CSON, CoffeeScript Object Notation. Like JSON (JavaScript Object Notation) it is a text format for describing simple objects. Because of which, when you specify...

View Article

Atom Editor: multiple snippets

This is such a simple question but I can't find any documentation besides the readme.How can I have multiple custom snippets in Atom Editior:For example I have this in my snippets.cson right...

View Article
Browsing all 7 articles
Browse latest View live




Latest Images