Conversation
Add tower-lsp based Language Server Protocol implementation to provide CODEOWNERS information directly in supported editors. Includes optional 'lsp' feature flag and new `ci lsp` command to start the server.
Move LSP server initialization into dedicated command handler module. Remove tower-lsp and tokio from default features to avoid bundling unused code when LSP is not needed.
Replace scattered quiet parameter passing with a unified output module that checks AppConfig.quiet. Add -q/--quiet CLI flag and automatic quiet mode for LSP server.
Use consistent cache_path format instead of checking multiple path variations. The cache always stores paths with "./" prefix, so we only need to match against that single format.
Move progress/status messages to stderr to keep stdout clean for LSP protocol communication. This eliminates the need to set quiet mode in the LSP server startup.
Add explicit schema type annotations for PathBuf and HashMap fields required by utoipa 5.x's stricter type handling.
Replace unwrap() with ok() and pattern matching to gracefully handle serialization failures instead of panicking.
The hidden --stdio argument was never used, so remove it to simplify the command interface.
Add optional --port flag to start LSP server over TCP instead of stdio, enabling remote editor connections and easier debugging.
Add GitHub Actions workflow for building and releasing LSP server binaries for Linux, Windows, and macOS (x64 and arm64). Upgrade workspace dependencies to latest versions including rayon, tokio, clap, and various other crates.
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.
Add tower-lsp based Language Server Protocol implementation to provide CODEOWNERS information directly in supported editors. Includes optional 'lsp' feature flag and new
ci lspcommand to start the server.