Last active
July 12, 2026 00:04
-
-
Save BenMakesGames/a4f3b303f33027b3ff141a5ba9ae6b77 to your computer and use it in GitHub Desktop.
add "Open in Claude Code" to the Windows context menu. assumes Claude Code and Windows Terminal are installed.
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
| Windows Registry Editor Version 5.00 | |
| ; Right-click on a folder | |
| [HKEY_CLASSES_ROOT\Directory\shell\OpenInClaudeCode] | |
| @="Open in Claude Code" | |
| "Icon"="claude.exe,0" | |
| [HKEY_CLASSES_ROOT\Directory\shell\OpenInClaudeCode\command] | |
| @="wt.exe -d \"%V\" claude" | |
| ; Right-click on empty space inside a folder | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenInClaudeCode] | |
| @="Open in Claude Code" | |
| "Icon"="claude.exe,0" | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenInClaudeCode\command] | |
| @="wt.exe -d \"%V\" claude" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment