-
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
1 parent
7d6ed53
commit e69e30d
Showing
6 changed files
with
8,982 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,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}" ] | ||
} | ||
] | ||
} |
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,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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,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" | ||
}] | ||
} | ||
} |
Oops, something went wrong.