-4

How do I insert a space + backslash at the end of the all lines in my Vim editor?

mkrieger1
  • 19,194
  • 5
  • 54
  • 65

1 Answers1

1

You can use

:%norm A \

or

:%s/$/ \\/
mattb
  • 2,787
  • 2
  • 6
  • 20