How to reset split screen to default in Notepad++
Right click on the tab and the choose “Move to Other View” This works for me on npp v6.6.9
Right click on the tab and the choose “Move to Other View” This works for me on npp v6.6.9
Open Settings -> Style Configurator, select “XML” in “Language” list, add “csproj” (without quotes) to “User ext” box.
Plugins NppExec Execute (F6) is much more powerful than plain Run (F5). Install NppExec via Plugins, Plugin Manager. Then in F6 add/save the following: NPP_SAVE cd “$(FULL_CURRENT_PATH)” C:\Python34\python.exe -u “$(FULL_CURRENT_PATH)” In Plugins NppExec Console output filters (Shift+F6) add the following HighLight mask: *File “%FILE%”, line %LINE% Make sure it’s checked, and make it e.g. red … Read more
Please use regex to remove anything before | example dsfdf | fdfsfsf dsdss|gfghhghg dsdsds |dfdsfsds Use find and replace in notepad++ find: .+(\|) replace: \1 output | fdfsfsf |gfghhghg |dfdsfsds
There is a way to define a user-defined language for you to tell Notepad++ to fold tabs by default. This is an unnecessary procedure however, since you can very quickly fold tabs without having to specially create a user-defined language each time you have a large, clunky xml file. Use the shortcuts Alt+4 and then … Read more
You can automatically add the current file using a variable in the execution string: C:\temp\test.exe “$(FULL_CURRENT_PATH)” The list of available variables is documented here. Examples: FULL_CURRENT_PATH = E:\My Web\main\welcome.html CURRENT_DIRECTORY = E:\My Web\main FILE_NAME = welcome.html NAME_PART = welcome EXT_PART = .html SYS.<var> e.g.: SYS.PATH = %PATH% CURRENT_WORD = <selection or word under cursor> CURRENT_LINESTR … Read more
You can Change it from: Menu Settings -> Style Configurator See on screenshot:
Assuming these are text files (since you are using notepad++) and that you are on Windows, you could fashion a simple batch script to concatenate them together. For example, in the directory with all the text files, execute the following: for %f in (*.txt) do type “%f” >> combined.txt This will merge all files matching … Read more
I ended up changing the “Default” tab spacing to what I use the most, and most of the other files I work with are already explicitly defined in the application.
Currently, the ability to select all similar text and edit (like the Ctrl+D functionality in Sublime, as mentioned by @George) is not built in to Notepad++ version 6.9.2. It does sound like it will work when Notepad++ updates the version of Scintilla it uses as the functionality is built in to the newer version of … Read more