I have Notepad++ 5.4.3 and I have Google Chrome installed.
In Notepad++, I know I can click on the Run menu; then browse for the .exe. But unfortunately, the only chrome.exe file I can find seems to be for the chromeframe for Internet Explorer.
Also, how can I remove the "Chrome" shortcut (which is not working) which I have added to the Run menu?
5 Answers
If you download the latest version (5.7?), the Run Menu has four different "Launch in browser" menu items (IE, Firefox, Chrome, and Safari)
0You can edit the link in the run menu by going to the %AppData%\Notepad++ directory and editing the shortcuts.xml file to reference the proper location of Chrome.
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="82">chrome "$(FULL_CURRENT_PATH)"</Command>Thats what it reads by default
<Command name="Launch in Chrome" Ctrl="yes" Alt="yes" Shift="yes" Key="82">%LocalAppData%\Google\Chrome\Application\Chrome.exe "$(FULL_CURRENT_PATH)"</Command>That's what it could read
Type this into the run command box:
%LocalAppData%\Google\Chrome\Application\Chrome.exe "$(FULL_CURRENT_PATH)" 6 Try adding the shortcuts you want in Settings > Shortcut Mapper > Run commands.
1In later verions of Notepad++ (currently 6.6.8) the shortcuts for browsers are not set by default, so one needs to save them first. To do so you can:
- Add them manually from Run menu
- Edit shortcuts.xml file
For the step by step solution, you can visit this link.
2I made the shortcut to be Alt + Shift + R and all is working fine.
The same for the other browser shortcuts.