Add a new blank line above or below in Notepad++
If you are a developer I am sure you would be looking for a way to enter a new blank line just above or below the line you are in Notepad++ Text editor, I looked for it and could not find any short cut so thought of creating a macro for it, you need to import it in your shortcuts.xml.
To add a blank line below the current line: <Macro name="New Line below" Ctrl="yes" Alt="yes" Shift="yes" Key="40">
<Action type="0" message="2451" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="
" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="
" />
</Macro>
Press Ctrl + Alt + Shift + Down to add a new line just below the current line. The macro will go to the end of the line for the current line and press enter!
To add a blank line above the current line: <Macro name="Add Line above" Ctrl="yes" Alt="yes" Shift="yes" Key="38">
<Action type="0" message="2451" wParam="0" lParam="0" sParam="" />
<Action type="0" message="2302" wParam="0" lParam="0" sParam="" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="
" />
<Action type="1" message="2170" wParam="0" lParam="0" sParam="
" />
</Macro>
Press Ctrl + Alt + Shift + Down to add a new line just below the current line.
More Posts related to NotepadPlusPlus,
- Notepad++ Editor alternatives for macOS
- How to add or remove bookmark on a line in Notepad++
- Notepad++ do not show CRLF characters
- Reduce the size of Tabs on Notepad++
- Delete blank lines in a file using Notepad++
- Fix: Notepad++ bottom status bar not visible
- Notepad++ Hex Editor
- How to show End of Line Characters in File using Notepad++
- [Tutorial] Write And Run Python Code In Notepad++ Editor
- How to install XML Tools Plugin Notepad++
- Customizing Notepad++ New Document Line Encoding: CR/LF/CR LF
- How to remove blank lines from a file using Notepad++
- Column Mode Editing in Notepad++
- Convert text to random case using Notepad++
- How to recover unsaved notepad file Windows 10
- How to delete all text after a character or string in Notepad++
- Setting up Cloud feature with Notepad++
- Install Notepad++ silently using Windows Powershell
- Using Document Map in Notepad++
- Enabling Notepad++ Dark Theme
- [Fix] Notepad++ tab not visible (hidden)
- Where are Notepad++ macros stored?
- Multiple line editing in Notepad++
- Alternatives for Notepad++ on Mac in 2021
- [Nopepad++] How to add text at end of each line
More Posts:
- How to uninstall pip Python packages - Python
- Center Align TextView Android Horizontally or Vertically - Android
- Java Stream flatmap() Examples - Java
- How to remove old 404 pages ulrs from Google crawler - Html
- Clear SFTP Prompt Screen on macOS Terminal - MacOS
- Convert Java Object to JSON using Jackson Library - Java
- Calculate Volume of Sphere - C-Program
- How to clear MySQL Console Screen - MySQL