Home
last modified time | relevance | path

Searched refs:sw_val (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dops.c233 int sw_val = (int)get_sw_value_indent(curbuf); in shift_line() local
239 i = count / sw_val; // number of 'shiftwidth' rounded down in shift_line()
240 j = count % sw_val; // extra spaces in shift_line()
251 count = i * sw_val; in shift_line()
257 count -= sw_val * amount; in shift_line()
262 count += sw_val * amount; in shift_line()
284 int sw_val = (int)get_sw_value_indent(curbuf); in shift_block() local
303 total = (int)((unsigned)amount * (unsigned)sw_val); in shift_block()
304 if ((total / sw_val) != amount) in shift_block()