sublime-zig-language
sublime-zig-language copied to clipboard
Zig language support for Sublime Text
Using Ctrl+R to search through symbols in a given file seems to yield not the actual definition site of a symbol, but just a random place where it happens to...
When formatting a file without an open folder, Sublime Text 3211 and 4126 show an error in the console. I haven't tested this in other Versions. Console Output: ```python Traceback...
I can’t turn off Build On Save, and it’s pretty annoying. I tried changing the preference but it didn’t work. How should I proceed?
I posed this earlier on the Sublime text bug tracker, but it only seems to happen when I'm building with Zig (not with Python), so I'm posting again here in...
- fixes the precedence of "quiet mode" in the settings to fix [this](https://github.com/ziglang/sublime-zig-language/issues/36#issuecomment-963632695) error - fixed issue broken "Build On Save" option this never worked because it was actually calling...
If you add this after the `"selector": "source.zig",` line, Sublime 4 is capable of parsing each of the errors and jumping to the line containing it: ``` "file_regex": "^\\s*([^:]+):(\\d+):(\\d+):\\s*(.*)$", ```
Update the build step so that the cwd is always the project folder when using zig build / zig build run / zig build test. I was running into path...
```zig // normal comment fn foo() void {} /// doc comment fn foo() void {} ``` It helps to show that they will be parsed differently.
I noticed the CI for macOS is currently broken on Github Actions. I've tried to debug it, but haven't found a solution yet. My assumption is that Github updated their...
https://github.com/ziglang/zig/pull/1026 sounds like zig already has some machine readable API(s) golang has excellent sublime plugin which alone helps tremendously, compared to the hassle of setting up a compilation database for...