Skip to content

Instantly share code, notes, and snippets.

@pfaffenrodt
Forked from amnuts/phpstorm.bat
Last active March 15, 2017 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pfaffenrodt/e0a0a1c05ecbf5eff99ede67c4ec0615 to your computer and use it in GitHub Desktop.
Save pfaffenrodt/e0a0a1c05ecbf5eff99ede67c4ec0615 to your computer and use it in GitHub Desktop.
Add context menu to Windows 7 to open file/folder in PhpStorm
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\phpstorm]
@="Open File in Phpstorm"
"Icon"="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\""
[HKEY_CLASSES_ROOT\*\shell\phpstorm\command]
@="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\shell\phpstorm]
@="Open Folder in Phpstorm"
"Icon"="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\""
[HKEY_CLASSES_ROOT\Directory\shell\phpstorm\command]
@="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\phpstorm]
@="Open Folder in Phpstorm"
"Icon"="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\phpstorm\command]
@="\"C:\\Program Files (x86)\\JetBrains\\PhpStorm 2016.3.3\\bin\\phpstorm64.exe\" \"%V\""
@pfaffenrodt
Copy link
Author

Added background directory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment