pub fn columnWidth(cur_column: usize, c: u8, tab_columns: usize) usize
pub fn columnWidth(cur_column: usize, c: u8, tab_columns: usize) usize { return switch (c) { '\t' => columnsUntilTabStop(cur_column, tab_columns), else => 1, }; }