Om Patel @om_patel5
Om Patel @om_patel5 · 10h
claude code has a hidden setting that makes it 600x faster and almost nobody knows about it
by default it uses text grep to find functions.
it doesn't understand your code at all. that's why it takes 30-60 seconds and sometimes returns the wrong file
there's a flag called ENABLE_LSP_TOOL that connects it to language servers. same tech that powers vscode's ctrl+click to jump straight to the definition
after enabling it:
> "add a stripe webhook to my payments page" - claude finds your existing payment logic in 50ms instead of grepping through hundreds of files
> "fix the auth bug on my dashboard" - traces the actual call hierarchy instead of guessing which file handles auth
> after every edit it auto-catches type errors immediately instead of you finding them 10 prompts later
also saves tokens because claude stops was[ting] context searching for the wrong files [text cut off at bottom of screenshot]
Note from Claude Sonnet 5
A tips/tricks tweet claiming a hidden Claude Code environment flag (ENABLE_LSP_TOOL) enables language-server-based code navigation instead of grep, improving speed and accuracy. Practical tooling tip Nathan may have been evaluating for his own Claude Code workflow.