Skip to content

Commit 36963c2

Browse files
committed
Fix broken image
1 parent bea97ca commit 36963c2

File tree

4 files changed

+46
-17
lines changed

4 files changed

+46
-17
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vscode/
22
vsc-extension-quickstart.md
3+
*.vsix

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# TI-BASIC Syntax Highlighting <a href="https://marketplace.visualstudio.com/items?itemName=tiny-hacker.ti-basic"><img alt="Visual Studio Marketplace Version" src="https://img.shields.io/visual-studio-marketplace/v/tiny-hacker.ti-basic?label=Visual%20Studio%20Marketplace"></a> <a href="https://marketplace.visualstudio.com/items?itemName=tiny-hacker.ti-basic"><img alt="Visual Studio Marketplace Downloads" src="https://img.shields.io/visual-studio-marketplace/d/tiny-hacker.ti-basic"></a> <a href="https://marketplace.visualstudio.com/items?itemName=tiny-hacker.ti-basic"><img alt="Visual Studio Marketplace Rating" src="https://img.shields.io/visual-studio-marketplace/r/tiny-hacker.ti-basic"></a>
22

3-
![Screenshot](assets/screenshot.png)
3+
![Screenshot](https://raw.githubusercontent.com/TIny-Hacker/language-ti-basic/main/assets/screenshot.png)
44

55
## About
66
This extension provides syntax highlighting for the z80 TI-BASIC language. This extension is meant specifically for the TI-84 Plus CE/83 Premium CE calculators, though it may work with others as well. Other useful features may be added in the future!

package-lock.json

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,41 @@
1616
"url": "https://github.com/TIny-Hacker/language-ti-basic"
1717
},
1818
"bugs": {
19-
"url": "https://github.com/TIny-Hacker/language-ti-basic/issues"
20-
},
19+
"url": "https://github.com/TIny-Hacker/language-ti-basic/issues"
20+
},
2121
"engines": {
2222
"vscode": "^1.75.0"
2323
},
2424
"categories": [
2525
"Programming Languages"
2626
],
2727
"contributes": {
28-
"languages": [{
29-
"id": "ti-basic",
30-
"aliases": ["TI-BASIC", "ti-basic"],
31-
"extensions": [".8xp",".8xp.txt",".83p",".83p.txt"],
32-
"configuration": "./language-configuration.json",
33-
"icon": {
34-
"light": "assets/ti-basic-file.svg",
35-
"dark": "assets/ti-basic-file.svg"
28+
"languages": [
29+
{
30+
"id": "ti-basic",
31+
"aliases": [
32+
"TI-BASIC",
33+
"ti-basic"
34+
],
35+
"extensions": [
36+
".8xp",
37+
".8xp.txt",
38+
".83p",
39+
".83p.txt"
40+
],
41+
"configuration": "./language-configuration.json",
42+
"icon": {
43+
"light": "assets/ti-basic-file.svg",
44+
"dark": "assets/ti-basic-file.svg"
45+
}
46+
}
47+
],
48+
"grammars": [
49+
{
50+
"language": "ti-basic",
51+
"scopeName": "source.8xp",
52+
"path": "./syntaxes/ti-basic.tmLanguage.json"
3653
}
37-
}],
38-
"grammars": [{
39-
"language": "ti-basic",
40-
"scopeName": "source.8xp",
41-
"path": "./syntaxes/ti-basic.tmLanguage.json"
42-
}]
54+
]
4355
}
4456
}

0 commit comments

Comments
 (0)