Skip to content

Instantly share code, notes, and snippets.

@BenMakesGames
Last active July 12, 2026 00:04
Show Gist options
  • Select an option

  • Save BenMakesGames/a4f3b303f33027b3ff141a5ba9ae6b77 to your computer and use it in GitHub Desktop.

Select an option

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.
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