1/* indent.c */ 2int tabstop_set(char_u *var, int **array); 3int tabstop_padding(colnr_T col, int ts_arg, int *vts); 4int tabstop_at(colnr_T col, int ts, int *vts); 5colnr_T tabstop_start(colnr_T col, int ts, int *vts); 6void tabstop_fromto(colnr_T start_col, colnr_T end_col, int ts_arg, int *vts, int *ntabs, int *nspcs); 7int *tabstop_copy(int *oldts); 8int tabstop_count(int *ts); 9int tabstop_first(int *ts); 10long get_sw_value(buf_T *buf); 11long get_sw_value_indent(buf_T *buf); 12long get_sw_value_col(buf_T *buf, colnr_T col); 13long get_sts_value(void); 14int get_indent(void); 15int get_indent_lnum(linenr_T lnum); 16int get_indent_buf(buf_T *buf, linenr_T lnum); 17int get_indent_str(char_u *ptr, int ts, int list); 18int get_indent_str_vtab(char_u *ptr, int ts, int *vts, int list); 19int set_indent(int size, int flags); 20int get_number_indent(linenr_T lnum); 21int briopt_check(win_T *wp); 22int get_breakindent_win(win_T *wp, char_u *line); 23int inindent(int extra); 24void op_reindent(oparg_T *oap, int (*how)(void)); 25int preprocs_left(void); 26void ins_try_si(int c); 27void change_indent(int type, int amount, int round, int replaced, int call_changed_bytes); 28int copy_indent(int size, char_u *src); 29void ex_retab(exarg_T *eap); 30int get_expr_indent(void); 31int get_lisp_indent(void); 32void fixthisline(int (*get_the_indent)(void)); 33void fix_indent(void); 34void f_indent(typval_T *argvars, typval_T *rettv); 35void f_lispindent(typval_T *argvars, typval_T *rettv); 36/* vim: set ft=c : */ 37