Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Conversation

@hovsater
Copy link
Collaborator

Instead of creating a temporary file, we can just tell Zig to read the
input from stdin.

Instead of creating a temporary file, we can just tell Zig to read the
input from stdin.
@emekoi emekoi merged commit eed4d9a into ziglang:master Jul 23, 2021
@hovsater hovsater deleted the cleanup-fmt-commmand branch July 23, 2021 04:32
prime31 added a commit to prime31/sublime-zig-language that referenced this pull request Mar 24, 2022
commit aeceaea
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Thu Jul 22 22:06:35 2021 -0500

    update brew command for ci

commit 31c84d8
Author: foxnne <foxnne@gmail.com>
Date:   Thu Jun 18 01:21:32 2020 -0500

    add variable support from vscode syntax

commit 924a3f6
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Sat Jul 24 12:46:41 2021 -0500

    updated README.md

commit b172a75
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Sat Jul 24 02:20:15 2021 -0500

    switched to ST3 apis for inline errors

commit 8a306fc
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Sat Jul 24 00:52:03 2021 -0500

    re-implemented inline errors

commit 4811d43
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Thu Jul 22 22:01:27 2021 -0500

    made build command more extensible

commit 8ff74ef
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Thu Jul 22 19:51:15 2021 -0500

    actually use `zig.executable` config var

commit 3b6aae3
Author: Kevin Sjöberg <mail@kevinsjoberg.com>
Date:   Fri Jul 23 03:39:45 2021 +0200

    Cleanup fmt command (ziglang#53)

commit 7c394e8
Author: Kevin Sjöberg <mail@kevinsjoberg.com>
Date:   Thu Mar 11 20:30:48 2021 +0100

    Add language grammar keyboard shortcut

commit c958a0e
Author: Kevin Sjöberg <mail@kevinsjoberg.com>
Date:   Thu Mar 11 17:19:33 2021 +0100

    Respect TM_ZIG environment variable

    The argument passed to `require_cmd` did not respect the TM_ZIG
    environment variable.

commit 9e42a96
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:47:03 2020 +0200

    remove unused type matching

    In zig, types appear after a column, they never appear unexpectedly.
    I don't think the `break :blk void` is valid Zig.

commit af42240
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:45:31 2020 +0200

    add test on numeric types

commit 6dbe310
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:40:07 2020 +0200

    remove look behind for `@import` (change)

    Incorrect code `typo@cImport` will have @cImport highlighted.
    If this is important, it's possible to prevent that
    by adding negative look ahead whenever we match an identifier.
    I didn't do it here to keep the PR readable.

commit 13eb80a
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:33:47 2020 +0200

    add tests for quoted identifiers `@"overloaded"`

commit 9552b5a
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:18:06 2020 +0200

    remove lookbehing for enum literals

commit 330f83e
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:17:51 2020 +0200

    add enum literals test

    taken from Zig documentation

commit e638fac
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 23:07:15 2020 +0200

    remove look behind for function decl/type

commit cd07a86
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 22:40:44 2020 +0200

    add test for fn types

commit 6fa0f46
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 22:36:40 2020 +0200

    add hello.zig to the tests

commit a0f78a9
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Sat Oct 3 22:30:19 2020 +0200

    remove look behind for numbers

    This change how the invalid `a.111` is handled
    Before the 111 wasn't detected as a number, now it is.

commit 3164195
Author: Guillaume Wenzek <gwenzek@users.noreply.github.com>
Date:   Thu Oct 1 23:43:23 2020 +0200

    add tests

    the only failing tests are the one marked as TODO, and indicates missing scopes.
    This will serve to document the changes I'll made

commit e8ab5c4
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Mon Jul 13 16:14:53 2020 -0500

    added `anytype`

commit 843261c
Author: Vexu <git@vexu.eu>
Date:   Fri Jun 26 21:11:20 2020 +0300

    update some keywords, fix enum syntax highlighting

commit 6d09caa
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Wed Jun 10 16:49:40 2020 -0500

    added `.sublime-syntax` file. closes ziglang#41

commit 9156ba2
Author: Emeka Nkurumeh <emekankurumeh@outlook.com>
Date:   Wed Jun 10 16:12:38 2020 -0500

    update json syntax file

commit 97e2164
Author: data-man <datamanrb@gmail.com>
Date:   Sun May 31 10:26:14 2020 +0500

    Added test snippet

commit 7bd91ae
Author: data-man <datamanrb@gmail.com>
Date:   Sun May 31 02:34:03 2020 +0500

    Add basic snippets

commit 636ecc1
Author: data-man <datamanrb@gmail.com>
Date:   Sat May 30 22:02:50 2020 +0500

    Fix hello.zig
prime31 pushed a commit to prime31/sublime-zig-language that referenced this pull request Mar 24, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants