Techatrix

Results 54 issues of Techatrix

### Zig Version 0.15.0-dev.648+92c63126e ### Steps to Reproduce and Observed Behavior Run the following program with `zig run repo.zig` ```zig // repo.zig const std = @import("std"); pub fn main() !void...

bug
standard library
os-windows

Consider the following steps that a new user might take to get started with Zig: 1. Open VS Code. 2. Open a new, empty folder as a workspace (optional). 3....

enhancement

Since #186, we use the [GlobalEnvironmentVariableCollection](https://code.visualstudio.com/api/references/vscode-api#GlobalEnvironmentVariableCollection) to add Zig to PATH so that it is available in the integrated terminal. One limitation is that the terminal will need to be...

enhancement

The "Select Zig version to install" menu should have a button to uninstall the selected Zig version. Adding buttons is supported by [quickPick](https://code.visualstudio.com/api/references/vscode-api#QuickPick). Here is how it would look like:...

enhancement

At the time of publishing this issue, the https://ziglang.org/download/index.json currently has `0.15.0-dev.636+35ba8d95a` as the latest nightly version. The [download page](https://ziglang.org/download/#release-master) however points to `0.15.0-dev.631+9a3540d61`. And the [index.json](https://github.com/ziglang/www.ziglang.org/blob/3f6cdc1c8a232cfc67b8bad1468590295eca2c88/assets/download/index.json) that is committed...

The [augmentsSyntaxTokens](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#semanticTokensClientCapabilities) client capability can be used to indicate that the client is going to combine existing syntax tokens with the semantic tokens of the server. This can not only...

Here is how this could look like: ![Image](https://github.com/user-attachments/assets/6f2aee5a-7bfa-4426-bbd5-f32842f79854) FYI: I just noticed that goto definition on a function declaration will jump to the doctest. I don't think that's been intentional...

feature

The Zig parser provided by the standard library `std.zig.Ast` has poor error recovery. This issue is going to keep track of the various issues that have been caused by it....

VS Code has an [API proposal](https://github.com/microsoft/vscode/blob/main/src/vscode-dts/vscode.proposed.editorHoverVerbosityLevel.d.ts) that adds the ability to request more or less information to be displayed in a hover popup. We should keep an eye on it...

enhancement
editor:vscode
priority:low

My `zls.log` file is 1.4 GiB 💀 ZLS should empty the file when it exits successfully.

enhancement