feat: add LSP progress reporting for workspace indexing#19
Open
ram-nadella wants to merge 2 commits intomainfrom
Open
feat: add LSP progress reporting for workspace indexing#19ram-nadella wants to merge 2 commits intomainfrom
ram-nadella wants to merge 2 commits intomainfrom
Conversation
Implements work done progress notifications during initial workspace indexing: - Check client capabilities for work done progress support - Send progress notifications showing file discovery and indexing status - Display "Indexing file X of Y" with percentage during parallel processing - Gracefully fall back to silent indexing if client doesn't support progress - Thread-safe progress reporting across parallel file processing This provides visual feedback in VSCode and other LSP clients that support work done progress, improving user experience during large workspace indexing. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Make regular index_workspace and parse_and_index_files call their _with_progress variants with no-op callbacks - Reduces code duplication and makes maintenance easier - No functional changes, just cleaner implementation
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
Changes
progress.rsmodule with LSP progress reporting utilitiesSymbolIndexto support progress callbacks during indexingTest plan
cargo fmt- formatting appliedcargo clippy- all warnings fixedcargo test- all tests pass🤖 Generated with Claude Code