Skip to content

Commit

Permalink
Added snippets to fill meta.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLetslook committed Aug 23, 2016
1 parent 7d6ed53 commit e69e30d
Show file tree
Hide file tree
Showing 6 changed files with 8,982 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// A launch configuration that launches the extension inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
}
]
}
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# MTA:SA Snippets

It helps to write scripts for the MTA:SA

> **Installation:**
ext install mtasasnippets

## Release Notes

### 0.0.2

Added snippets to fill meta.xml

### 0.0.1

Initial release of MTA:SA Snippets
Binary file added common/extension.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "mtasasnippets",
"displayName": "MTA:SA Snippets",
"description": "Lua snippets for MTA:SA",
"version": "0.0.2",
"publisher": "theletslook",
"icon": "common/extension.png",
"galleryBanner": {
"color": "#1A1A1A",
"theme": "dark"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/TheLetslook/VSCode-MTASASnippets/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/TheLetslook/VSCode-MTASASnippets/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/TheLetslook/VSCode-MTASASnippets.git"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [{
"language": "lua",
"path": "./snippets/lua.json"
},
{
"language": "xml",
"path": "./snippets/xml.json"
}]
}
}
Loading

0 comments on commit e69e30d

Please sign in to comment.