Add go-to-definition support for BIG archive virtual files#75
Merged
Conversation
- Canonicalize `big:` URIs for indexed archive entries - Expose archived INIs through read-only definition and open flows - Add end-to-end and VS Code coverage for BIG-backed navigation
|
| Filename | Overview |
|---|---|
| crates/server/src/backend.rs | Adds consistent BIG URI canonicalization to document and virtual-file lookup paths, with focused normalization tests. |
| crates/server/tests/e2e.py | Adds end-to-end coverage for archive indexing, URI variants, virtual reads, and definition navigation. |
| editors/vscode/src/extension.ts | Extends the language-client document selector to archive-backed generals-ini documents. |
| editors/vscode/src/test/runTest.ts | Generates a BIG archive fixture and configures it as a base INI root for extension tests. |
| editors/vscode/src/test/suite/smoke.test.ts | Exercises definitions into and within archived virtual documents through VS Code. |
| docs/language-server.md | Documents URI schemes and read-only navigation behavior for loose and archived definitions. |
Reviews (1): Last reviewed commit: "Support navigation into BIG archive virt..." | Re-trigger Greptile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
big:URIs so archive-backed virtual files resolve consistently across clients..bigarchives.file:URIs while archive contents usebig:URIs.Testing
cargo test -p zerosyntax-serveror the server test coverage added incrates/server/src/backend.rs.python crates/server/tests/e2e.py target/debug/zerosyntax-lsp.exe.editors/vscode/src/test/suite/smoke.test.ts.