Lines Matching refs:b_p_ts

199     int		ts = ts_arg == 0 ? curbuf->b_p_ts : ts_arg;  in tabstop_fromto()
369 tabstop_at(col, buf->b_p_ts, buf->b_p_vts_array); in get_sw_value_col()
371 buf->b_p_ts; in get_sw_value_col()
392 return get_indent_str_vtab(ml_get_curline(), (int)curbuf->b_p_ts, in get_indent()
395 return get_indent_str(ml_get_curline(), (int)curbuf->b_p_ts, FALSE); in get_indent()
406 return get_indent_str_vtab(ml_get(lnum), (int)curbuf->b_p_ts, in get_indent_lnum()
409 return get_indent_str(ml_get(lnum), (int)curbuf->b_p_ts, FALSE); in get_indent_lnum()
423 (int)curbuf->b_p_ts, buf->b_p_vts_array, FALSE); in get_indent_buf()
425 return get_indent_str(ml_get_buf(buf, lnum, FALSE), (int)buf->b_p_ts, FALSE); in get_indent_buf()
551 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in set_indent()
554 tab_pad = (int)curbuf->b_p_ts in set_indent()
555 - (ind_done % (int)curbuf->b_p_ts); in set_indent()
584 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in set_indent()
587 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts); in set_indent()
605 tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts, in set_indent()
618 while (todo >= (int)curbuf->b_p_ts) in set_indent()
624 todo -= (int)curbuf->b_p_ts; in set_indent()
704 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in set_indent()
707 tab_pad = (int)curbuf->b_p_ts in set_indent()
708 - (ind_done % (int)curbuf->b_p_ts); in set_indent()
726 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in set_indent()
729 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts); in set_indent()
746 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in set_indent()
755 while (todo >= (int)curbuf->b_p_ts) in set_indent()
758 todo -= (int)curbuf->b_p_ts; in set_indent()
933 if (prev_line != line || prev_ts != wp->w_buffer->b_p_ts in get_breakindent_win()
941 prev_ts = wp->w_buffer->b_p_ts; in get_breakindent_win()
946 (int)wp->w_buffer->b_p_ts, in get_breakindent_win()
950 (int)wp->w_buffer->b_p_ts, wp->w_p_list); in get_breakindent_win()
1464 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in copy_indent()
1467 tab_pad = (int)curbuf->b_p_ts in copy_indent()
1468 - (ind_done % (int)curbuf->b_p_ts); in copy_indent()
1495 tab_pad = tabstop_padding(ind_done, curbuf->b_p_ts, in copy_indent()
1498 tab_pad = (int)curbuf->b_p_ts - (ind_done % (int)curbuf->b_p_ts); in copy_indent()
1517 tab_pad = tabstop_padding(ind_col, curbuf->b_p_ts, in copy_indent()
1528 while (todo >= (int)curbuf->b_p_ts) in copy_indent()
1530 todo -= (int)curbuf->b_p_ts; in copy_indent()
1634 new_ts = curbuf->b_p_ts; in ex_retab()
1672 curbuf->b_p_ts, new_vts_array, &t, &s); in ex_retab()
1746 && curbuf->b_p_ts == tabstop_first(new_vts_array)) in ex_retab()
1754 if (curbuf->b_p_ts != new_ts) in ex_retab()
1780 curbuf->b_p_ts = tabstop_first(new_vts_array); in ex_retab()
1786 curbuf->b_p_ts = new_ts; in ex_retab()