lalitmetkar / vim

Automatically exported from code.google.com/p/vim
0 stars 0 forks source link

C indenting: incorrect indentation for continuation line after preprocessor statement #41

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Following the suggestion by Bram Moolenaar while discussing 7.3.363 I'm opening 
an issue to serve as a reminder to myself that I promised I would have a look 
at it.

#v+
char foo[]
#ifdef FOO_BAR
= { a, b, c, d, /* FIXME: this line should be indented more because it is a
                 * continuation line. */
    e, f, g, h,
    i, j, k, l }
#endif
    ;
#v-

Original issue reported on code.google.com by lech.lor...@gmail.com on 13 Dec 2011 at 10:28