llogick

Results 11 issues of llogick

this could be just my distro, but i find myself having to repackage the .deb because it has clangd-10 and clang-format-10 as deps Where: https://github.com/eranif/codelite/blob/046f27ca511a3e3128069542aa004a32fc96ce8c/CMakeLists.txt#L506-L517 proposed: ``` set(DEB_DEPS "") if...

this probably looks rough but does highlight everything declared with "var" at the root level Closes #540

See https://github.com/zigtools/zls-vscode/issues/56 and https://github.com/zigtools/zls/issues/1137 Vague idea: Add a `${arch}-${os}` subfolder here `const installDir = vscode.Uri.joinPath(context.globalStorageUri, "zls_install");` Treat `zls.path` as an override - if set user is responsible for managing the...

enhancement

## Feeling out how disruptive this would be Ignoring missing semicolons (https://github.com/ziglang/zig/blob/eb5276c94eaab238551fdae9a2e77b0133e31cfb/lib/std/zig/Parse.zig#L876) solves ```zig const E = enum { foo, bar, baz, fn foo(e: E) void { switch (e) {.};...

Most lines are indented, ie `line[0] == ' '`(a space). Tokenizing `line` as the sole buffer returns location offsets relative/within to that line, but are expected to be indexes within...

Resolves #1707 It'd require some rework but should this be extended to anon struct inits? Should completions include ` = ` for struct fields?

Extract the current snippets as defaults; allow having none or adding custom ones.

enhancement

By default CodeLite uses llvm-as as an assembler when using the clang compiler, but llvm-as only works with/on `.ll` files. From the project's website: ["It reads a file containing human-readable...

stale

Enables the LSP `settings` and `binary.{path/arguments}` functionality Example: ``` "lsp": { "zls": { "settings": { "semantic_tokens": "none" }, "binary": { "path": "/home/user/zls/zig-out/bin/zls", "arguments": ["--enable-debug-log"] } } }, ``` Release Notes:...

cla-signed

### Zig Version - ### Zig Language Server Version dfe958e ### Client / Code Editor / Extensions - ### Steps to Reproduce and Observed Behavior Can be observed for any...

bug