How to delete the current line and add a new line

2019-03-11 13:45发布

How to delete the current line and add a new line in Notepad++?

These two operations are very common but I can't find any key setting how to do them in Notepad++. Can any plugin do this job?

4条回答
Animai°情兽
2楼-- · 2019-03-11 14:07

Question #1 Ctrl + L or Ctrl + Alt + L as already answered

Question #2 Enter, will add a new empty line and align the cursor to previous

查看更多
Anthone
3楼-- · 2019-03-11 14:15

if you want to delete line you can use find replace feature with extended option in it like

  1. Click Ctrl+F and then go to replace tab
  2. Check the extended option in it
  3. in find type anything
  4. in replace you can type '\n'(to insert blank line) '\t' (to delete blank line)
查看更多
Emotional °昔
4楼-- · 2019-03-11 14:23

Ctrl + L shall be able to cut the current line and Ctrl + Shift + L shall be able to remove the current line.

You can see and change hotkeys in Settings > Shortcut Mapper... > Scintilla Commands.

The version of my Notepad++ is 6.1.1.

查看更多
神经病院院长
5楼-- · 2019-03-11 14:24

Ctrl + L will cut the line.

Ctrl + Shift + L will delete the line (i.e. not copying it to clipboard).

Credits to @BobStein-VisiBone and @RyanGoldstein above.

Please note this works in more applications than just Notepad++!

查看更多
登录 后发表回答