0

I've tried every which way to sunday to make this work but nothing I do seems to work.

I know I can't use let on modeline. This is what I'm currently using without showbreak in my modeline to wrap the text and indent it.

/* vim: set breakindent formatoptions=l lbr : */

And I want to add a showbreak of two spaces in order so that the next word wrapped line lines up with the first character after the bullet point of the prior line.

How can I add the functionality of let &showbreak=' ' to my modeline? Basically showbreak=.. but replace the periods with spaces?

Any assistance is greatly appreciated!

1 Answers1

1

Well, seems that just typing my question answered it ;)

/* vim: set breakindent formatoptions=l lbr showbreak=\ \ : */

Escapes.

romainl
  • 23,415