zls
zls copied to clipboard
A language server for Zig supporting developers with features like autocomplete and goto definition
It would be useful if `go to definition` on symbols imported from C had the option to jump to the C header, not cached Zig translation. One use case for...
### Zig Version 0.12.0-dev.3439+31a7f22b8 ### Zig Language Server Version 0.12.0-dev.496+96eddd0 ### Client / Code Editor / Extensions VSCode with official extension ### Steps to Reproduce and Observed Behavior Put this...
### Zig Version 0.12.0 ### Zig Language Server Version 0.12.0 ### Client / Code Editor / Extensions Emacs ### Steps to Reproduce and Observed Behavior The original extension was `tar.gz`...
### Zig Version 0.12.0 ### Zig Language Server Version 0.12.0 ### Client / Code Editor / Extensions VS Code 1.86.1 (Windows), extension: Zig Language v0.5.7 ### Steps to Reproduce and...
### Zig Version 0.12.0 ### Zig Language Server Version 0.12.0 ### Client / Code Editor / Extensions VS Code 1.86.1 (Windows), extension: Zig Language v0.5.7 ### Steps to Reproduce and...
## integer overflow not highlighted as an error The following code should have a hover error over the assignment to 500, as 500 would overflow the 8 bit integer. zls,...
So right now I'm in the process of learning Vulkan and it has a ton of large configuration structs. Now I would like to know what fields are missing so...
Completions are sorted by the label since 1805837067cc68d563866cbf1eb5873dd64aa93a. Grouping them based on what kind (keyword, function, variable, ...) they are seems reasonable but sorted them alphabetically? You often group/order declarations...
In the following code snippet, in which order should the completions be ordered? ```zig const large_number: u64 = 0; const small_number: u32 = 0; const byte: u8 = 0; const...
The instructions for Coc https://github.com/zigtools/zls/wiki/Installation#with-extension say to use `:CocInstall coc-zls` Coc uses npm under the hood, so it finds https://www.npmjs.com/package/coc-zls, which is owned by https://github.com/xiyaowong No offense to @xiyaowong, but...