Notepad++ show open files on the left
Settings > Preferences > tab General > Document List Panel > check Show
Settings > Preferences > tab General > Document List Panel > check Show
In Notepad++ to replace, hit Ctrl+H to open the Replace menu. Then if you check the “Regular expression” button and you want in your replacement to use a part of your matching pattern, you must use “capture groups” (read more on google). For example, let’s say that you want to match each of the following … Read more
As of Notepad++ version 7.5, plugin manager is no longer shipped with Notepad++ From the Notepad++ release notes: You may notice that Plugin Manager plugin has been removed from the official distribution. The reason is Plugin Manager contains the advertising in its dialog. I hate Ads in applications, and I ensure you that there was … Read more
You can right click the tab and select move to or open in new instance. This only works for files that are not dirty (when the tab icon is not red).
Click Ctrl + h or Search -> Replace on the top menu Under the Search Mode group, select Regular expression In the Find what text field, type ],\s* In the Replace with text field, type ],\n Click Replace All
There’s a plugin called NppExport that does just that in a couple of available formats. If you don’t have NppExport yet, you can download it through the inbuilt plugin manager. update As of version 6.1.5 (or maybe earlier) this ships with a standard install of Notepad++ update As of 2019 NppExport is not included by … Read more
There is an old plugin called HEX Editor here. According to this question on Super User it does not work on newer versions of Notepad++ and might have some stability issues, but it still could be useful depending on your needs.
You can do this by using the Style Configurator (Settings Menu): This image shows the php language, but it works for any language you want to map
That functionality is already built into Notepad++. From the “Edit” menu, select “EOL Conversion” -> “UNIX/OSX Format”. screenshot of the option for even quicker finding (or different language versions) You can also set the default EOL in notepad++ via “Settings” -> “Preferences” -> “New Document/Default Directory” then select “Unix/OSX” under the Format box.
In Windows the macros are saved at %AppData%\Notepad++\shortcuts.xml (Windows logo key + E and copy&paste %AppData%\Notepad++\) Or: In Windows < 7 (including Win2008/R2) the macros are saved at C:\Documents and Settings\%username%\Application Data\Notepad++\shortcuts.xml In Windows 7|8|10 C:\Users\%username%\AppData\Roaming\Notepad++\shortcuts.xml Note: You will need to close Notepad++ if you have any new macros you want to ‘export’. Here is … Read more