Created
January 1, 2015 00:55
-
-
Save P7h/b57c899e4e2a52545a84 to your computer and use it in GitHub Desktop.
Adds GitHub Atom Editor to the Windows Explorer context menu. Not required anymore as Atom Installation is adding the context menu entry.
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 | |
| ; | |
| ; Adds 'Atom' to context menu (when you right click) in Windows Explorer. | |
| ; | |
| ; Save this file to disk with a .reg extension. Replace C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe with | |
| ; the path to the atom executable on your machine. I am on Atom 0.165.0 when I created this script. | |
| ; | |
| ; Please replace <<winuser>> with the user profile name on your Windows machine. | |
| ; This has been tested with Windows 7 64 bit. | |
| ; | |
| ; Make sure you are running as administrator. | |
| ; | |
| ; Double click the file and then click yes on the popup. | |
| ; | |
| ; OR | |
| ; | |
| ; open a command prompt in the folder this files is copied and type | |
| ; regedit open-with-atom.reg | |
| ; | |
| ; | |
| [HKEY_CLASSES_ROOT\*\shell\Atom KI ext] | |
| ""="Atom" | |
| "Icon"="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe" | |
| [HKEY_CLASSES_ROOT\*\shell\Atom KI ext\command] | |
| ""="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe \"%1\"" | |
| ; when you right click a folder | |
| [HKEY_CLASSES_ROOT\Directory\shell\Atom KI ext] | |
| ""="Atom" | |
| "Icon"="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe" | |
| [HKEY_CLASSES_ROOT\Directory\shell\Atom KI ext\command] | |
| ""="C:\\Useriths\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe \"%1\"" | |
| ; when you right click a folder while holding shift | |
| [HKEY_CLithASSES_ROOT\Directory\Background\shell\Atom KI ext] | |
| ""="Atom" | |
| "Icon"="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe" | |
| [HKEY_CLASSES_ROOT\Directory\Background\shell\Atom KI ext\command] | |
| ""="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exeith \"%V\"" | |
| ; when you right click the background, not on a particular file or folder. | |
| [HKEY_CLASSES_ROOT\LibraryFolder\Background\shell\Atom KI ext] | |
| ""="Atom" | |
| "Icon"="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe" | |
| [HKEY_CLASSES_ROOT\LibraryFolder\Background\shell\Atom KI ext\command] | |
| ""="C:\\Users\\<<winuser>>\\AppData\\Local\\atom\\app-0.165.0\\atom.exe \"%V\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment