Lines Matching refs:ppos
140 static colnr_T hardcopy_line(prt_settings_T *psettings, int page_line, prt_pos_T *ppos);
821 prt_pos_T *ppos) in hardcopy_line() argument
834 if (ppos->column == 0 || ppos->ff) in hardcopy_line()
838 if (!ppos->ff && prt_use_number()) in hardcopy_line()
839 prt_line_number(psettings, page_line, ppos->file_line); in hardcopy_line()
840 ppos->ff = FALSE; in hardcopy_line()
845 print_pos = ppos->print_pos; in hardcopy_line()
846 tab_spaces = ppos->lead_spaces; in hardcopy_line()
850 line = ml_get(ppos->file_line); in hardcopy_line()
855 for (col = ppos->column; line[col] != NUL && !need_break; col += outputlen) in hardcopy_line()
866 id = syn_get_id(curwin, ppos->file_line, col, 1, NULL, FALSE); in hardcopy_line()
872 line = ml_get(ppos->file_line); in hardcopy_line()
915 ppos->ff = TRUE; in hardcopy_line()
928 ppos->lead_spaces = tab_spaces; in hardcopy_line()
929 ppos->print_pos = (int)print_pos; in hardcopy_line()
935 if (!ppos->ff in hardcopy_line()