Skip to content

Commit

Permalink
version 0.0.1: fixed main and added linux keybinding in package.json …
Browse files Browse the repository at this point in the history
…and edited changelog
  • Loading branch information
johannesbonk committed Apr 1, 2020
1 parent 3dbd939 commit 7306701
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [Unreleased]
* ghdl file elaborate
* Export module to ghw file and open with gtkwave
* Invoke functions via Side Bar
* Submenu for editor context menu (when the feature is finally implemented in vscode)

- Initial release
## Version 0.0.1
* Initial release
* Implemented basic functionality:
* Analyze files with ghdl
* Highlight reported errors in editor
* Keybindings (for analyze file):
* Windows: cntrl + alt + a
* Mac: shift + cmd + a
* Linux: shift + alt + a
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"activationEvents": [
"onCommand:extension.ghdl-analyze_file"
],
"main": "./ghdlInterface.js",
"main": "./src/ghdlInterface.js",
"contributes": {
"commands": [
{
Expand All @@ -33,7 +33,8 @@
{
"command": "extension.ghdl-analyze_file",
"key": "ctrl+alt+a",
"mac": "shift+cmd+a"
"mac": "shift+cmd+a",
"linux": "shift+alt+a"
}
]
},
Expand Down

0 comments on commit 7306701

Please sign in to comment.