Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to insert blank lines with Notepad++?

Tags:

notepad++

Just looking for a way to insert blank lines in every 2 lines in Notepad++, but I cant find the settings for this. Please tell me how to configure this?

like image 625
jone Avatar asked Jun 13 '14 09:06

jone


People also ask

How do you make lines in notepad?

A slash, / or \, is used for drawing a slant line. A hyphen, -, is used to make a dashed horizontal line. An underscore, _, is used to make a continuous horizontal line. A 'shift + \', resulting in |, is used to make a dashed vertical line.

How you can add a blank line in the text?

Press the TAB key. A line extends from the insertion point to the tab created in step 4. Press ENTER to move to a blank line, and then press the TAB key again. Repeat this step as needed.

Which key you will press to insert blank lines in notepad?

If you are still in Notepad, press ALT+TAB to move back to the Script Manager. Press CTRL+END to move to the bottom of the file. Press ENTER twice to create a new blank line.

How do I make multiple lines in one line in notepad?

Choose Edit → Line Operations → Join Lines from the menu or press Ctrl + J .


1 Answers

There is no setting for this thing in notepad++. However the shortcut for:

Insert blank line above the current line is: Ctrl+Alt+Enter
Insert blank line below the current line is: Ctrl+Alt+Shift+Enter

Pressing Enter can also insert a new blank line in the case of text files, but in case of script file like python script file pressing Enter generally inserts a new line but with the identations like tabs or spaces, depending upon how you ident your code.

like image 182
ρss Avatar answered Oct 03 '22 18:10

ρss