Fix for Claude VS Code Extension Error: 'command claude-vscode.editor.openLast not found'

The Claude VS Code extension version 2.1.51 has a bug that prevents it from loading properly, causing the error message "command 'claude-vscode.editor.openLast' not found" when users try to interact with it.
What's happening
Version 2.1.51 introduced a breaking bug that causes the extension to crash immediately on startup. This failure prevents the extension from registering its UI commands with VS Code. When users attempt to use the extension, VS Code throws the error because it can't find the registered commands.
The bug appears to be caused by a hardcoded path error in the extension's core files. According to reports, this issue largely affects Windows users.
How to fix it
To restore functionality while waiting for Anthropic to release a patch:
- Open the Extensions tab in VS Code
- Find "Claude Code" and click the gear icon ⚙️
- Click "Install Another Version..."
- Select version 2.1.49 from the dropdown list
- Reload VS Code
This downgrade to version 2.1.49 resolves the issue and returns the extension to normal operation.
📖 Read the full source: r/ClaudeAI
👀 See Also

Qwen 3.5 Tool Calling Fixes for Agentic Use: Server Status and Client-Side Workarounds
A detailed analysis identifies four bugs that break Qwen 3.5 tool calling in agentic setups, tracks server fixes as of April 2026, and provides a client-side Python function to parse XML tool calls when servers fail.

How to Access GPT-5.4 Early on OpenClaw via Dev Channel
The OpenClaw dev channel currently offers access to GPT-5.4 before its stable release. Users need to switch their gateway to the dev channel using a specific command and restart it to see the model in their list.

Guide: Running GitHub Copilot with Local LLM on Windows via Lemonade Server
A developer created a walkthrough for setting up GitHub Copilot to work with a local LLM on a Framework Desktop using Lemonade Server, addressing the lack of simple instructions for this configuration on Windows.

A 4-file memory system for OpenClaw agents without plugins
A Reddit user shares a practical memory system using four markdown files: USER.md for identity, CONTEXT.md for active work, MEMORY.md for structured topics, and ARCHIVE.md for completed items. The approach addresses the 'agent doesn't know what it knows' problem through better file architecture rather than more memory.