Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
scomx authored Oct 19, 2024
1 parent c00862a commit b0ec078
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
5 changes: 5 additions & 0 deletions cvbasic-lang/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log

##
## [0.0.3] 2024-10-19
### Added
- Missing TO keyword
- Extension icon

## [0.0.2] 2024-10-18
### Added
- Missing CHAR keyword
Expand Down
9 changes: 7 additions & 2 deletions cvbasic-lang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ No known issues.

## Release Notes

First release
### 0.0.1
First release

Added CHAR keyword, GitHub repo link and working screenshot link.
### 0.0.2
Added missing CHAR keyword to syntax.
Updated VSIX with GitHub repo link and working screenshot link.

### 0.0.3
Added missing TO keyword to syntax and a VSCode extension icon.

---
5 changes: 4 additions & 1 deletion cvbasic-lang/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
"name": "cvbasic-lang",
"displayName": "CVBasic Lang",
"description": "Syntax highlighting for CVBasic",
"version": "0.0.2",
"icon": "assets/cvbasic_128px_v2.png",
"version": "0.0.3",
"author": "rvc <[email protected]>",
"engines": {
"vscode": "^1.94.0"
},
"categories": [
"Programming Languages"
],
"homepage": "https://github.com/scomx/cvbasic-vscode-ext/tree/main/cvbasic-lang#readme",
"license": "MIT",
"contributes": {
"languages": [{
Expand Down
2 changes: 1 addition & 1 deletion cvbasic-lang/syntaxes/cvbasic.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"keywords": {
"patterns": [{
"name": "keyword.control.cvbasic",
"match": "(?i:\\b(ASM|BANK|BORDER|CALL|CLS|END|FAST|FLICKER|FULL|FOR|NEXT|DO|LOOP|WHILE|GOSUB|RETURN|GOTO|IF|THEN|ELSE|ELSEIF|MODE|ON|OFF|KEY|OPEN|OUT|PLAY|PRINT|AT|RESTORE|SCREEN|DISABLE|ENABLE|SELECT|SIGNED|SIMPLE|STOP|UNSIGNED|WAIT|STEP|INCLUDE|INCBIN|NO|NONE|DRUMS)\\b)"
"match": "(?i:\\b(ASM|BANK|BORDER|CALL|CLS|END|FAST|FLICKER|FULL|FOR|TO|NEXT|DO|LOOP|WHILE|GOSUB|RETURN|GOTO|IF|THEN|ELSE|ELSEIF|MODE|ON|OFF|KEY|OPEN|OUT|PLAY|PRINT|AT|RESTORE|SCREEN|DISABLE|ENABLE|SELECT|SIGNED|SIMPLE|STOP|UNSIGNED|WAIT|STEP|INCLUDE|INCBIN|NO|NONE|DRUMS)\\b)"
},
{
"name": "keyword.operator.logical.cvbasic",
Expand Down

0 comments on commit b0ec078

Please sign in to comment.