This repository has been archived by the owner on Mar 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 2acdaef
Showing
5 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// A launch configuration that launches the extension inside a new window | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Extension", | ||
"type": "extensionHost", | ||
"request": "launch", | ||
"runtimeExecutable": "${execPath}", | ||
"args": [ | ||
"--extensionDevelopmentPath=${workspaceFolder}" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
.gitignore | ||
vsc-extension-quickstart.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
# Change Log | ||
|
||
All notable changes to the "flex-and-actionscript-extension-pack" extension pack will be documented in this file. | ||
|
||
## v0.0.1 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# README | ||
|
||
## Flex and ActionScript Extension Pack | ||
|
||
Includes Visual Studio Code extensions for Flex and ActionScript development: | ||
|
||
* [vscode-as3mxml](https://github.com/BowlerHatLLC/vscode-as3mxml) - ActionScript & MXML language extension | ||
* [vscode-as-fx-ide](https://github.com/neminovno/vscode-as-fx-ide) - ActionScript and Flex projects support (Menu items/Commands like New Project, New Item Renderer) | ||
* [vscode-flex-snippets](https://github.com/neminovno/vscode-flex-snippets) - Flex (MX & Spark) snippets | ||
|
||
**Enjoy!** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "flex-and-actionscript-extension-pack", | ||
"displayName": "Flex and ActionScript Extension Pack", | ||
"description": "Includes extensions for Flex and ActionScript development", | ||
"version": "0.0.1", | ||
"publisher": "neminovno", | ||
"engines": { | ||
"vscode": "^1.34.0" | ||
}, | ||
"categories": [ | ||
"Extension Packs" | ||
], | ||
"keywords": [ | ||
"flex", | ||
"actionscript", | ||
"mxml", | ||
"air" | ||
], | ||
"homepage": "https://github.com/neminovno/flex-and-actionscript-extension-pack/blob/master/README.md", | ||
"bugs": { | ||
"url": "https://github.com/neminovno/flex-and-actionscript-extension-pack/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/neminovno/flex-and-actionscript-extension-pack.git" | ||
}, | ||
"extensionPack": [ | ||
"bowlerhatllc.vscode-nextgenas", | ||
"neminovno.vscode-as-fx-ide", | ||
"neminovno.vscode-flex-snippets" | ||
] | ||
} |