9
let b:some = {
            \ 'some',
            \ 'array',
}

This makes code ugly IMHO, how can I change that and should I change that? Is that some coding style or something in vimscript?

Also, is there a plugin that would (I think I had one, but I don't know which one) would expand <CR> like delimitMate with inserting appropriate number of spaces and \?

Martin Tournoij
  • 62,054
  • 25
  • 192
  • 271
user1685095
  • 1,141
  • 11
  • 24

1 Answers1

8

You can change the amount of that indentation by setting the variable g:vim_indent_cont, e.g.,

:let g:vim_indent_cont = &sw

See

:help ft-vim-indent
garyjohn
  • 6,309
  • 20
  • 21