34

There is -multiInst launch parameter that lets you open more than one instance of Notepad++, but how to make it launch a new window every time when I click on "Edit with Notepad++" or "Open With..." shell context menu?

serg
  • 1,300

9 Answers9

48

create a totally empty file called 'asNotepad.xml' and put it in the Notepad++ directory at the same level as the notepad++.exe file

MetaGuru
  • 3,809
  • 6
    Thanks, that worked. Why not just put it as an option... – serg Oct 22 '10 at 18:25
  • 1
    no idea as I am not the developer just a pro at Googling, perhaps there was some legal issue with having it act like Notepad? That seems unlikely though.. – MetaGuru Oct 22 '10 at 18:42
  • most open source developers add features based on what the user base requests or what they feel is most important for usability and stability. If you want it as an option, request it from the developers. – MaQleod Oct 22 '10 at 18:58
  • 4
    This is still not quite what I want. This totally obliterates the tabs. I still want documents to open in tabs when I go to file->open, I just want a new window when I open it from the explorer. – Matthew Scouten Feb 08 '11 at 18:37
  • @MatthewScouten: would http://sourceforge.net/projects/notepad-plus/forums/forum/331753/topic/1859159 help? – VonC Oct 13 '11 at 06:22
  • Hint to create the file on cmd: 1) run as administrator (right click) 2) type NUL > EmptyFile.txt – The Student Oct 19 '15 at 18:04
  • Note: when this was asked 10 years ago there wasn't an option. There now is, in the Settings page, for Multi Instance mode which does what the OP wanted. – nickcrabtree May 26 '20 at 16:13
  • @TheStudent - In Total Commander, place the cursor on notepad++.exe then press Shift+F4 to create an empty file named "notepad++" :) – IceCold Mar 25 '21 at 14:20
11

I was just looking for the same thing.

You can change the shell's file type settings to make this work. My computer still has XP on it, so here's how to configure XP.

Windows Vista/7 will be different but similar.

  • Open Explorer Menu Tools | Folder Options...
  • Tab File Types
  • Scroll and select TXT Hit Advanced... (If missing, hit Restore and the button turns into Advanced.)
  • (Edit File Type Dialog)
  • Select action 'open', hit Edit...
  • "Application used to perform action" is the command line that is used to open the file.

Screen Shot

"C:\Program Files\Notepad++\notepad++.exe" "%1" -nosession -multiInst

I added the switches -nosession and -multiInst so that when I open up Notepad++ from the start menu, it re-opens my session files. But opening a file from explorer opens in a new window, and doesn't get added to my session.

9

Settings -> Preferences -> Multi-instance

Right click on filename in tab, choose “Move to other view” for split screen.

  • 1
    Do you know the difference between the settings "Always open in mulit-instance mode" and "Open session in a new instance"? Official help file not really clear and real-world behavior not any clearer. – JoelAZ Feb 21 '18 at 20:18
7

Another way to get multiple windows is to simply drag a tab onto the desktop and a new instance of NP++ will start, with that tab in it (you can drag as many as you want).

Clicking on a file associated with NP++ will open that file in the last active NP++ window.

Also there is a tab context menu, right click a tab and you will see 'Move to new instance' and 'Open in new instance'. Both start a new instance of NP++.

'Move...' closes the tab in the current instance and opens file, that was in that tab, in a tab in the new instance (i.e. a 'move'). 'Open..' starts a new instance but keeps the file open in both instances.

nads
  • 71
2

Rather then modifying existing functionality I created a new right click command 'Edit with Notepadd++ in new window' for any type of file.

notepad++ separate window right click

Create a new key as per below export, or copy the context into a blank.reg and double click it.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\Notepad++]
@="Edit with Notepad++ in new window"

[HKEY_CLASSES_ROOT\*\shell\Notepad++\command]
@="C:\\Program Files\\Notepad++\\Notepad++.exe %1 -multiInst -nosession"
2

Noticed in v6.6.9 that it's possible to set shell options when installing the extension:

 regsvr32 /i nppshell_06.dll

enter image description here

bvj
  • 141
1

I like to reuse a Notepad++ window only explicitly by dragging a file over one of the existing Notepad++ windows. Otherwise, every time I click on the Notepad++ icon or open a file, I want a new window.

Here is how I do this: I've added -multiInst to the Notepad++ shortcut, so a new window pops up every time I open Notepad++.

Then I've also added -multiInst to the (Default) value under the following regkey:

HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\open\command\

...so that every time I open a file, it opens in a new window.

harrymc
  • 480,290
1

recently I got same problem.

As I think the easiest way is to write simple .bat file something like this:

...

SET var1="C:\Users\churaev.s\Desktop\a01_strt.bat"

SET var2="C:\Users\churaev.s\Desktop\b02_code.mat"

SET var3="C:\Users\churaev.s\Desktop\c03_data.txt"

...

START "" "C:\Program Files (x86)\Notepad++\notepad++.exe" %var1%

START "" "C:\Program Files (x86)\Notepad++\notepad++.exe" %var2%

START "" "C:\Program Files (x86)\Notepad++\notepad++.exe" %var3%

...

0

Another option that I discovered looking at the Registry Editor on windows:

HKEY_CLASSES_ROOT/*/shellex

There should one of the following folders:

  • ANotepad++64
  • Notepad++64

Now, on both of then the "Default" key should have the GUID of the registry to run, copy this value and search for it, select the "Settings" subkey: Notepad++ RegKey values

Edit "Custom" to have the same options as the image, if you wanted with session, don't add the "-nosession" flag.