Expand description
Code lens handler: “Update N outdated dependencies”.
Mirrors handlers::code_actions’ delegation pattern, but produces a single
document-scoped lens (or none) bound to COMMAND_ID rather than a per-position
action. The command handler that applies the edit lives in server::execute_command,
not here — it needs the raw Vec<TextEdit>, not the wrapped CodeLens.
Constants§
- COMMAND_
ID - The
workspace/executeCommandid bound to the lens produced here.
Functions§
- handle_
code_ lens - Handles
textDocument/codeLensrequests using trait-based delegation.