This repository has been archived by the owner on Jan 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎨 added syntax coloring for Vyper specific types
- Loading branch information
p-
committed
Mar 12, 2018
1 parent
bf594f1
commit 63bcc1b
Showing
4 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# Change Log | ||
All notable changes to the "vscode-vyper" extension will be documented in this file. | ||
|
||
## 0.0.3 | ||
- Added 'Build on Save' | ||
- Syntax coloring for Vyper specific types | ||
|
||
## 0.0.2 | ||
- The virtual env path can now be changed | ||
- The Vyper contract can now be in a subdirectory | ||
|
||
## 0.0.1 | ||
- Initial release | ||
- Vyper: Build Contract command that build a give contract and displays syntax errors | ||
- Vyper: 'Build Contract' command that builds a given contract and displays its errors | ||
- Syntax Higlighting for Vyper (*.vy, *.v.py) files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
int128Type: int128 | ||
uint256Type: uint256 | ||
decimalType: decimal | ||
bytes32Type: bytes32 | ||
addressType: address | ||
|
||
# Unit types | ||
timestampType: timestamp | ||
timeDeltaType: timedelta | ||
weiValueType: wei_value |