forked from aniani/vim
Problem: Ignore functionality is not separated.
Solution: Move indent functionality into a new file. (Yegappan Lakshmanan,
closes #3886)
17 lines
499 B
C
17 lines
499 B
C
/* indent.c */
|
|
int cin_is_cinword(char_u *line);
|
|
pos_T *find_start_comment(int ind_maxcomment);
|
|
int cindent_on(void);
|
|
int cin_islabel(void);
|
|
int cin_iscase(char_u *s, int strict);
|
|
int cin_isscopedecl(char_u *s);
|
|
void parse_cino(buf_T *buf);
|
|
int get_c_indent(void);
|
|
int get_expr_indent(void);
|
|
int in_cinkeys(int keytyped, int when, int line_is_empty);
|
|
int get_lisp_indent(void);
|
|
void do_c_expr_indent(void);
|
|
void fixthisline(int (*get_the_indent)(void));
|
|
void fix_indent(void);
|
|
/* vim: set ft=c : */
|