Home
last modified time | relevance | path

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

/vim-8.2.3635/src/proto/
H A Dmark.pro21 void mark_adjust(linenr_T line1, linenr_T line2, long amount, long amount_after);
/vim-8.2.3635/src/
H A Dex_cmds.c649 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); in ex_sort()
653 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); in ex_sort()
1256 mark_adjust(line1, line2, linecount, 0L); in do_filter()
1263 mark_adjust(line2 + 1, (linenr_T)MAXLNUM, in do_filter()
1265 mark_adjust(line1, line2, linecount, 0L); in do_filter()
1271 mark_adjust(line1, line1 + read_linecount - 1, in do_filter()
1273 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); in do_filter()
4576 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); in ex_substitute()
4671 mark_adjust(lnum, lnum + nmatch_tl - 1, in ex_substitute()
H A Dchange.c770 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, count, 0L); in appended_lines_mark()
793 mark_adjust(lnum, (linenr_T)(lnum + count - 1), (long)MAXLNUM, -count); in deleted_lines_mark()
2113 mark_adjust(curwin->w_cursor.lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); in open_line()
H A Dmark.c1011 mark_adjust( in mark_adjust() function
H A Dif_tcl.c746 mark_adjust((linenr_T)val1, (linenr_T)val2, (long)MAXLNUM, in bufselfcmd()
H A Dregister.c2190 mark_adjust(curbuf->b_op_start.lnum + (y_type == MCHAR), in do_put()
H A Ddiff.c2857 mark_adjust(lnum, lnum + count - 1, (long)MAXLNUM, (long)added); in ex_diffgetput()
H A Dif_mzsch.c2704 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1), in set_buffer_line_list()
H A Dundo.c2829 mark_adjust(top + 1, top + oldsize, (long)MAXLNUM, in u_undoredo()
H A Dif_py_both.h4681 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1), in SetBufferLineList()
/vim-8.2.3635/runtime/doc/
H A Dversion8.txt11681 Problem: Invoking mark_adjust() when adding a new line below the last line
11683 Solution: Skip calling mark_adjust() when appending below the last line.