snippets
snippets copied to clipboard
Atom snippets package
I have just received an [issue](https://github.com/idleberg/atom-semantic-ui/issues/2#issuecomment-121737883) for one a package of Atom snippets. The package in question was converted from Sublime Text and it used `.text.html -text.html.markdown` as scope. Now,...
Hi, There is a really nice feature in some editors with snippets where you can expand a snippet at a tab stop inside another snippet, and continue walking through the...
I'd like to create a snippet which needs to access the atom configuration, namely, the preferred line length setting. Since this seems like a feature request, might as well ask...
Myriad of snippets added by multiple packages will create confusion when typing the prefix. Different colours can clear that up, so you can easily spot which to which package the...
Hi, I have a couple of snippets like the following: ``` func(${1:arg1}, arg2 = ${2:defaultValue}) ``` Now, you sometimes do not want to set arg2. In Python for example, it...
_From @toddmbloom on May 13, 2015 16:50_ Currently snippets are defined as such: ``` '.source.': '': 'prefix': '' 'body': '' ``` Which is good, but leaves a lot to be...
When I'm trying to go to the next tab stop (by pressing tab) I often get unwanted behavior due to other packages using the same key. I noticed that Atom...
File name can be shown incorrectly in notification. The sequence `\.` is turned into `.` — for example, it is read as "\Users\user.atom\packages" instead of "\Users\user\.atom\packages". The issue is that...
Hello ! I'm adding a snippet programmatically (via add() function) for a powerfull autocomplete, but I'd like to remove it a bit later in my code. The only way I...