should be good
This commit is contained in:
parent
abafc4ce45
commit
85fe0eca1e
16
package.json
16
package.json
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"name": "x86-assembly-syntax",
|
||||
"displayName": "x86/x64 Assembly Syntax",
|
||||
"description": "Syntax highlighting for x86/x64 assembly with Intel syntax",
|
||||
"version": "0.0.2",
|
||||
"displayName": "x86-x64 Assembly Syntax",
|
||||
"description": "Syntax highlighting for x86 and x64 assembly with Intel syntax",
|
||||
"version": "1.0.1",
|
||||
"engines": {
|
||||
"vscode": "^1.60.0"
|
||||
},
|
||||
|
|
@ -12,8 +12,8 @@
|
|||
"contributes": {
|
||||
"languages": [{
|
||||
"id": "x86asm",
|
||||
"aliases": ["x86/x64 Assembly", "x86asm"],
|
||||
"extensions": [".asm", ".s", ".S"],
|
||||
"aliases": ["x86-x64 Assembly", "x86/x64 Assembly", "x86/x64", "x86-x64", "x86asm"],
|
||||
"extensions": [".asm", ".s", ".S", ".nasm"],
|
||||
"configuration": "./language-configuration.json"
|
||||
}],
|
||||
"grammars": [{
|
||||
|
|
@ -32,6 +32,12 @@
|
|||
"url": "https://github.com/haxo-games/x86-x64-syntax-highlighting/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"x86-x64 Assembly",
|
||||
"x86/x64 Assembly",
|
||||
"x86/x64",
|
||||
"x86-x64",
|
||||
"x86asm",
|
||||
"asm",
|
||||
"assembly",
|
||||
"x86",
|
||||
"x64",
|
||||
|
|
|
|||
|
|
@ -1,29 +0,0 @@
|
|||
# Welcome to your VS Code Extension
|
||||
|
||||
## What's in the folder
|
||||
|
||||
* This folder contains all of the files necessary for your extension.
|
||||
* `package.json` - this is the manifest file in which you declare your language support and define the location of the grammar file that has been copied into your extension.
|
||||
* `syntaxes/asm.tmLanguage.json` - this is the Text mate grammar file that is used for tokenization.
|
||||
* `language-configuration.json` - this is the language configuration, defining the tokens that are used for comments and brackets.
|
||||
|
||||
## Get up and running straight away
|
||||
|
||||
* Make sure the language configuration settings in `language-configuration.json` are accurate.
|
||||
* Press `F5` to open a new window with your extension loaded.
|
||||
* Create a new file with a file name suffix matching your language.
|
||||
* Verify that syntax highlighting works and that the language configuration settings are working.
|
||||
|
||||
## Make changes
|
||||
|
||||
* You can relaunch the extension from the debug toolbar after making changes to the files listed above.
|
||||
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
|
||||
|
||||
## Add more language features
|
||||
|
||||
* To add features such as IntelliSense, hovers and validators check out the VS Code extenders documentation at https://code.visualstudio.com/docs
|
||||
|
||||
## Install your extension
|
||||
|
||||
* To start using your extension with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
|
||||
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.
|
||||
Loading…
Reference in a new issue