aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Czihak <git@dcz.at>2026-05-10 19:10:43 +0200
committerDavid Czihak <git@dcz.at>2026-05-10 19:10:43 +0200
commit33ea57ddd69f35f3f2db64a1a2d31b410ed7afb2 (patch)
tree01913cb507da3498715aaf4c9b340e08c31b06ae
parent315195d38c26c33dd25933895201c706b3aef782 (diff)
Docs: Add known issues section to README
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 118ffb3..3741954 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ This extension is not endorsed by, affiliated with, or associated with the [Zig
- Syntax highlighting for `.zig` and `.zon`
- Code folding for blocks, declarations, and control-flow expressions
- Document symbols (outline, breadcrumbs, Go to Symbol)
-- Diagnostics, completion, hover, go to definition, find references, select all references, formatting (all via ZLS)
+- Diagnostics, completion, hover, go to definition, find references, select all references, code actions, formatting (all via ZLS)
- Inline compiler errors from `zig build`
### Tasks
@@ -68,11 +68,15 @@ Paths to the `zig`, `zls`, and `lldb-dap` executables. Leave any blank to discov
- Allow ZLS to run its build/check on save
- Log ZLS traffic to the Extension Console (for troubleshooting)
-## Troubleshooting
+## Known Issues
+
+### Auto-discovered tasks cannot open the report automatically
+
+The **Current Zig File** and **zig build \<step\>** tasks are provided programmatically by the extension. Nova’s extension API does not expose the report-opening setting for tasks created this way. Open the report manually or use a task template (**Project Settings > Tasks > New Task**) if automatic report opening matters.
### A large part of the file turns red after one error
-The parser may report a broad recovery range when it hits an incomplete expression (for example, `MyError.`), and Nova highlights that entire range. Fix the first syntax error shown and the overlay should narrow to the real error locations.
+The parser may report a broad recovery range when it hits an incomplete expression, and Nova highlights that entire range. Fix the first syntax error shown and the overlay should narrow to the real error locations.
## Development