Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 1 | /* indent.c */ |
| 2 | int cin_is_cinword(char_u *line); |
| 3 | pos_T *find_start_comment(int ind_maxcomment); |
| 4 | int cindent_on(void); |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 5 | void parse_cino(buf_T *buf); |
| 6 | int get_c_indent(void); |
| 7 | int get_expr_indent(void); |
| 8 | int in_cinkeys(int keytyped, int when, int line_is_empty); |
| 9 | int get_lisp_indent(void); |
| 10 | void do_c_expr_indent(void); |
| 11 | void fixthisline(int (*get_the_indent)(void)); |
| 12 | void fix_indent(void); |
| 13 | /* vim: set ft=c : */ |