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); |
Bram Moolenaar | 010ee96 | 2019-09-25 20:37:36 +0200 | [diff] [blame] | 13 | int tabstop_set(char_u *var, int **array); |
| 14 | int tabstop_padding(colnr_T col, int ts_arg, int *vts); |
| 15 | int tabstop_at(colnr_T col, int ts, int *vts); |
| 16 | colnr_T tabstop_start(colnr_T col, int ts, int *vts); |
| 17 | void tabstop_fromto(colnr_T start_col, colnr_T end_col, int ts_arg, int *vts, int *ntabs, int *nspcs); |
| 18 | int tabstop_eq(int *ts1, int *ts2); |
| 19 | int *tabstop_copy(int *oldts); |
| 20 | int tabstop_count(int *ts); |
| 21 | int tabstop_first(int *ts); |
| 22 | long get_sw_value(buf_T *buf); |
| 23 | long get_sw_value_indent(buf_T *buf); |
| 24 | long get_sw_value_col(buf_T *buf, colnr_T col); |
| 25 | long get_sts_value(void); |
Bram Moolenaar | 4b47162 | 2019-01-31 13:48:09 +0100 | [diff] [blame] | 26 | /* vim: set ft=c : */ |