Skip to content

Commit

Permalink
fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
loyio committed Feb 1, 2022
1 parent f0b3b2c commit ac13c6c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
All notable changes to the "Nand2Tetris for vscode" extension will be documented in this file.

## [0.5.0]

- fix some bugs
- update document file

## [0.4.0]

- add .vm syntax support
Expand Down Expand Up @@ -32,6 +37,7 @@ All notable changes to the "Nand2Tetris for vscode" extension will be documented
- Initial _cmp_ snippets
- Initial _tst_ snippets
- Initial _asm_ snippets
- Initial *jack* snippets

### Syntax Highlighting

Expand All @@ -40,6 +46,9 @@ All notable changes to the "Nand2Tetris for vscode" extension will be documented
- tst
- out
- asm
- hack
- jack
- vm

### Language Support

Expand All @@ -48,3 +57,5 @@ All notable changes to the "Nand2Tetris for vscode" extension will be documented
- tst
- out
- asm
- jack
- vm
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ A vscode extension for Nand2Tetris Project

![jack-snippet](https://github.com/loyio/Nand2Tetris-vscode/blob/main/images/jack-snippet.gif?raw=true)


## Change log

### v0.5.0

- fix some bugs
- update document file

### v0.4.0

- add .vm syntax support
Expand Down Expand Up @@ -73,15 +77,15 @@ A vscode extension for Nand2Tetris Project

## TODO

* [ ] Syntaxes
* [x] Syntaxes

* [x] hack
* [ ] jack
* [x] jack


* [ ] Snippets
* [x] Snippets

* [ ] jack
* [x] jack



Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Nand2Tetris-vscode",
"displayName": "Nand2Tetris For Vscode",
"description": "Supports snippets and linting for Nand2Tetris Courses,Snippets nand2tetris hdl, tst, cmp and asm files, lanuage support and syntax-highlighting for hdl, tst, cmp, asm and out files",
"version": "0.4.0",
"version": "0.5.0",
"engines": {
"vscode": "^1.8.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"Creates a 16 bit AND gate": {
"prefix": "And16",
"body": "And16(a=${1:a}, a=${2:b}, out=${3:out});",
"body": "And16(a=${1:a}, b=${2:b}, out=${3:out});",
"description": [
"Requires two 16 bit buses and applies the logical AND gate.\n",
"| a | b |out|",
Expand Down

0 comments on commit ac13c6c

Please sign in to comment.