This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
Releases: MarioAriasC/zig-support
Releases · MarioAriasC/zig-support
v0.3.0
v0.2.5
Added
- Support for the new IDEA platform version 2023.2
- Updated to the latest JetBrain's IntelliJ platform plugin version.
v0.2.4
Added
- Support for the new IDEA platform version 2023.1
- Some auto-completions have new icons
- Background work to support features for new versions
- Fix building process by updating images to Java 17
v0.2.2
Added
- Support for the new IDEA platform version 2022.3
v0.2.1
Added
- Autocomplete builtin functions, i.e.
@functions
- Autocomplete primitive types
v0.2.0
Added
- Support for Zig 0.10.0
packed
structs with backing field, e.g.:packed struct(i32)
inline
switch cases- Remove
anytype
fields
v0.1.0
v0.0.7
Added
- More Live Templates for Zig:
St
->[]const u8
tst
-> Creates a test:test "" {}
csd
-> ConstantSelf
declaration:const Self = @This();
ced
-> Enumcstd
-> Structfn0
-> Function without parametersfn1
-> Function with one parameterfn2
-> Function with two parameters
- Support for the new IDEA platform version 2022.2
v0.0.6
Added
- Improved parser: 100% of the language is parsed correctly.
- Insert closing pair match for
(
,{
,[
and"
- Highlight
(
,{
and[
pairs - Introduce Live Templates for Zig:
import
-> Create an import using the@import
functionsdp
-> Debug Print statementsli
-> Log Info statement
Fixed
- Fix issue #15