In Notepad++, how can I launch my HTML files in Google Chrome through the Run menu?

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)

0

You 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 &quot;$(FULL_CURRENT_PATH)&quot;</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 &quot;$(FULL_CURRENT_PATH)&quot;</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.

1

In 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.

2

I made the shortcut to be Alt + Shift + R and all is working fine.

The same for the other browser shortcuts.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like