Re: VS Code snippets

2018-05-20 Thread Nemi
Check out Flex snippets extension: https://marketplace.visualstudio.com/items?itemName=neminovno.vscode-flex-snippets -- Sent from: http://apache-flex-development.247.n4.nabble.com/

Re: VS Code snippets

2017-02-05 Thread Nemi
If extension is not a option right now, maybe put it on https://gist.github.com/ so one can copy snippets' files somewhere and use them. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/VS-Code-snippets-tp58803p59044.html Sent from the Apache Flex Developmen

Re: VS Code snippets

2017-02-01 Thread Harbs
I was exploring snippets as a way to create classes. I created a snippet which get most of the way there, but packages and classes need to be created separately. I was hoping to use something similar to TextMate’s bash execution, but that’s not supported: https://github.com/Microsoft/vscode/issu

Re: VS Code snippets

2017-01-30 Thread Josh Tynjala
VSCode doesn't expose APIs to display a custom form similar to how you would create a new class in Flash Builder where you can specify the name of a new class, its package, superclass, interfaces, etc. In a custom command, you can ask VSCode to display a set of instructions with either a text inpu

Re: VS Code snippets

2017-01-30 Thread Harbs
I’m trying to figure out the best way to create new classes. I can create a snippet which lays out the scaffolding for a class, but I’d really like something similar to the “New” command in Flash Builder. Is anyone familiar with solutions for that? > On Jan 30, 2017, at 7:24 PM, Carlos Rovira

Re: VS Code snippets

2017-01-30 Thread Carlos Rovira
That looks good :) Here seems to be a way : https://code.visualstudio.com/Docs/customization/userdefinedsnippets#_sharing-your-snippets-in-the-marketplace 2017-01-30 17:58 GMT+01:00 Harbs : > I started creating some VS Code snippets for making writing code with .as > and mxml files in VS Code ea