Created
April 18, 2025 10:09
-
-
Save p1xelHer0/527774a34d21ac1e2a0ca4bf147e0be7 to your computer and use it in GitHub Desktop.
Windows Registry Edit to add "Edit with Neovide" to the right click menu for files, directories and when click empty background in a directory
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 | |
[HKEY_CLASSES_ROOT\*\shell\Neovide] | |
@="Edit with Neovide" | |
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\"" | |
[HKEY_CLASSES_ROOT\*\shell\Neovide\command] | |
@="\"C:\\Program Files\\Neovide\\neovide.exe\" \"%1\"" | |
[HKEY_CLASSES_ROOT\Directory\shell\Neovide] | |
@="Open Neovide here" | |
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\"" | |
[HKEY_CLASSES_ROOT\Directory\shell\Neovide\command] | |
@="\"C:\\Program Files\\Neovide\\neovide.exe\" -- --cmd \"cd \"%1\"\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Neovide] | |
@="&Open Neovide here" | |
"Icon"="\"C:\\Program Files\\Neovide\\neovide.exe\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Neovide\command] | |
@="\"C:\\Program Files\\Neovide\\neovide.exe\" -- --cmd \"cd \"%v\"\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment