Using Python LSP Overview The pyright-lsp plugin provides semantic code intelligence for Python. Use LSP tools instead of grep/read when you need semantic accuracy - LSP understands Python's type system, inheritance, and symbol relationships. When to Use LSP vs Text Search Use LSP for: - Finding all usages before refactoring - Getting type information - Navigating to definitions - Checking for type errors Use Grep for: - Text patterns (comments, strings, config) - Cross-language searches - When LSP unavailable LSP Operations Quick Reference | Task | LSP Operation | Instead of | |------|------…