Created
June 26, 2025 03:06
-
-
Save elit8888/6ff214b33669e2d3d3f9a895664e9645 to your computer and use it in GitHub Desktop.
Cursor right click context menu registration, assuming cursor installed globally
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 | |
| ; 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