Home | History | Annotate | Download | only in sets

Lines Matching defs:column

205 -- Calculate the column on which the field should be aligned.
206 local function column(entries, get_width_before, colname)
249 assert_equals(column(entries, width_before_category, "category_col"), 8)
252 -- to the minimum required column.
258 assert_equals(column(entries, width_before_category, "category_col"), 24)
267 assert_equals(column(entries, width_before_category, "category_col"), 24)
276 assert_equals(column(entries, width_before_flags, "flags_col"), 32)
294 column(entries, width_before_category, "category_col")
295 local flags_col = column(entries, width_before_flags, "flags_col")
297 -- To avoid horizontal jumps for the category column, the minimum column is
298 -- set to 56. This way, the third column is usually set to 72, which is
299 -- still visible on an 80-column screen.