Releases: kirides/vscode-daedalus
Releases · kirides/vscode-daedalus
Public alpha v0.0.3
Fixes:
- Syntax-Highlighting was not respecting case-insensitiveness
- fixed some issues with highlighting (namely, single-line instance declarations, and
@
inside the name)
New feature:
- identifiers can now start with a any amount of digits, followed by atleast one letter (e.g. 1hand)
- simple function documentation
/// This is documentation
/// multiline is also supported!
func void myFunc() {};
Public alpha v0.0.2
Changes:
- identifiers can now start with a single digit, followed by atleast one letter (e.g. 1hand)
- more relaxed handling of keyword names (e.g.
fUnC
is now valid)
New:
- new diagnostics:
D0001 - Do not start identifiers with digits
(type:Warning
)D0002 - Split multiple 'var TYPE ..., var TYPE ...' into separate statements.
(type:Warning
)
Public alpha
Inlcudes support for:
- Realtime syntax-error checking
- Signature lookup
- Autocompletion for methods and global variables/constants
- Go To Definition / Peek Definition (only method names and global variables/constants for now)
- Automatically parses all source-code that is found in the root
GOTHIC.src
file
Supported platforms:
- windows x86 + x64 (future support for *nix platforms is planned)