Skip to content

Instantly share code, notes, and snippets.

@elit8888
Created June 26, 2025 03:06
Show Gist options
  • Select an option

  • Save elit8888/6ff214b33669e2d3d3f9a895664e9645 to your computer and use it in GitHub Desktop.

Select an option

Save elit8888/6ff214b33669e2d3d3f9a895664e9645 to your computer and use it in GitHub Desktop.
Cursor right click context menu registration, assuming cursor installed globally
Windows Registry Editor Version 5.00
; Open files
[HKEY_CURRENT_USER\Software\Classes\*\shell\Open with Cursor]
@="Edit with Cursor"
"Icon"="C:\\Program Files\\cursor\\cursor.exe,0"
[HKEY_CURRENT_USER\Software\Classes\*\shell\Open with Cursor\command]
@="\"C:\\Program Files\\cursor\\cursor.exe\" \"%1\""
; This will make it appear when you right click ON a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\cursor]
@="Open Folder as Cursor Project"
"Icon"="C:\\Program Files\\cursor\\cursor.exe,0"
[HKEY_CURRENT_USER\Software\Classes\Directory\shell\cursor\command]
@="\"C:\\Program Files\\cursor\\cursor.exe\" \"%1\""
; This will make it appear when you right click INSIDE a folder
; The "Icon" line can be removed if you don't want the icon to appear
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\cursor]
@="Open Folder as Cursor Project"
"Icon"="C:\\Program Files\\cursor\\cursor.exe,0"
[HKEY_CURRENT_USER\Software\Classes\Directory\Background\shell\cursor\command]
@="\"C:\\Program Files\\cursor\\cursor.exe\" \"%V\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment