Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Releases: MarioAriasC/zig-support

v0.3.0

10 Aug 13:33
348b519
Compare
Choose a tag to compare

Added

  • Initial support for 0.11.0 release:
    • Multi-object For Loops
    • New builtins
    • Rename Casting Builtins

v0.2.5

30 Jul 05:00
e5c9571
Compare
Choose a tag to compare

Added

  • Support for the new IDEA platform version 2023.2
  • Updated to the latest JetBrain's IntelliJ platform plugin version.

v0.2.4

08 Apr 05:25
ba0f49d
Compare
Choose a tag to compare

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

03 Dec 09:25
2655207
Compare
Choose a tag to compare

Added

  • Support for the new IDEA platform version 2022.3

v0.2.1

07 Nov 10:46
ee68636
Compare
Choose a tag to compare

Added

  • Autocomplete builtin functions, i.e. @functions
  • Autocomplete primitive types

v0.2.0

03 Nov 08:45
14b7cfa
Compare
Choose a tag to compare

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

14 Aug 15:04
437df1f
Compare
Choose a tag to compare

Added

  • #24 Use zig fmt to format *.zig files. You can use
    the Reformat code action (By default Cmd/Ctrl + Alt + L)
  • Updated to the latest JetBrain's IntelliJ platform plugin version.

v0.0.7

28 Jul 03:18
829176e
Compare
Choose a tag to compare

Added

  • More Live Templates for Zig:
    • St -> []const u8
    • tst -> Creates a test: test "" {}
    • csd -> Constant Self declaration: const Self = @This();
    • ced -> Enum
    • cstd -> Struct
    • fn0 -> Function without parameters
    • fn1 -> Function with one parameter
    • fn2 -> Function with two parameters
  • Support for the new IDEA platform version 2022.2

v0.0.6

26 Jun 16:10
ddc300f
Compare
Choose a tag to compare

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 function
    • sdp -> Debug Print statement
    • sli -> Log Info statement

Fixed

  • Fix issue #15

v0.0.5

15 Jun 17:35
828f2e7
Compare
Choose a tag to compare

Fixed

  • Fix issue #12