0

Pretty much what it says in the title. I am trying to add 2 spaces to the beginning of every line of a very long list in Notepad++. I could do it manually, but it would be a serious pain. I'm sure there is some simple method I am not seeing.

Thank you.

Snarkwell
  • 119
  • 1
  • 1
    Does this answer your question? [Notepad++ add to every line](https://stackoverflow.com/questions/11003761/notepad-add-to-every-line) – Kate Orlova Jul 12 '20 at 10:28

1 Answers1

1

Here is a very simple replacement you may do, in regex mode:

Find:    ^
Replace: (two spaces)

The above approach finds the (zero width) marker for the start of each line, and then replaces with two spaces, thereby inserting two spaces to the start of each line.

Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360