Skip to content

Commit

Permalink
enable extension for lang=python - fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
tintinweb committed Sep 28, 2020
1 parent 1bc7cf5 commit 5a13a3a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 0.0.6
- new: enable ethover for python files - #5

## 0.0.5
- improve UI, show progress, fix error messages - #2

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-ethover",
"displayName": "ETHover",
"description": "Ethereum Account Address Hover Info and Actions",
"version": "0.0.5",
"version": "0.0.6",
"keywords": [
"solidity",
"ethereum",
Expand Down Expand Up @@ -33,7 +33,8 @@
"onLanguage:solidity",
"onLanguage:typescript",
"onLanguage:javascript",
"onLanguage:solidity",
"onLanguage:markdown",
"onLanguage:python",
"onLanguage:evmtrace",
"onLanguage:evmbytecode",
"onCommand:vscode-ethover.account.getCode",
Expand Down
1 change: 1 addition & 0 deletions src/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const DOC_SELECTOR = [
{ language: "solidity" },
{ language: "javascript" },
{ language: "typescript" },
{ language: "python" },
];

function openEvmTrace(uri) {
Expand Down

0 comments on commit 5a13a3a

Please sign in to comment.