Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dmemline.c317 buf->b_ml.ml_flags = ML_EMPTY; in ml_open()
1253 buf->b_ml.ml_flags = 0; in ml_recover()
2684 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY; in ml_get_buf()
2825 buf->b_ml.ml_flags &= ~ML_EMPTY; in ml_append_int()
2911 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; in ml_append_int()
2913 buf->b_ml.ml_flags |= ML_LOCKED_POS; in ml_append_int()
3089 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY; in ml_append_int()
3091 buf->b_ml.ml_flags |= ML_LOCKED_POS; in ml_append_int()
3452 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY; in ml_replace_len()
3492 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY; in ml_replace_len()
[all …]
H A Dtextprop.c294 if (buf->b_ml.ml_flags & ML_LINE_DIRTY) in prop_add_one()
298 buf->b_ml.ml_flags |= ML_LINE_DIRTY; in prop_add_one()
564 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) in set_text_props()
568 curbuf->b_ml.ml_flags |= ML_LINE_DIRTY; in set_text_props()
691 if (!(buf->b_ml.ml_flags & ML_LINE_DIRTY)) in f_prop_clear()
699 buf->b_ml.ml_flags |= ML_LINE_DIRTY; in f_prop_clear()
1053 if (!(buf->b_ml.ml_flags & ML_LINE_DIRTY)) in f_prop_remove()
1063 buf->b_ml.ml_flags |= ML_LINE_DIRTY; in f_prop_remove()
1553 if ((curbuf->b_ml.ml_flags & ML_LINE_DIRTY) == 0) in adjust_prop_columns()
1556 curbuf->b_ml.ml_flags |= ML_LINE_DIRTY; in adjust_prop_columns()
H A Dundo.c600 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0); in u_savecommon()
2246 if (curbuf->b_ml.ml_flags & ML_EMPTY) in u_doit()
2341 if (curbuf->b_ml.ml_flags & ML_EMPTY) in undo_time()
2695 ((curbuf->b_ml.ml_flags & ML_EMPTY) ? UH_EMPTYBUF : 0); in u_undoredo()
2868 curbuf->b_ml.ml_flags |= ML_EMPTY; in u_undoredo()
2984 if (curbuf->b_ml.ml_flags & ML_EMPTY) in u_undo_end()
H A Dnetbeans.c1327 int buf_was_empty = (buf->bufp->b_ml.ml_flags & ML_EMPTY); in nb_do_cmd()
3313 if (bufp->b_ml.ml_flags & ML_EMPTY) in get_buf_size()
3355 if (!(buf->b_ml.ml_flags & ML_EMPTY)) in off2pos()
3400 if (!(buf->b_ml.ml_flags & ML_EMPTY)) in pos2off()
H A Dops.c617 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to do in op_delete()
1015 if ((curbuf->b_ml.ml_flags & ML_EMPTY ) || oap->empty) in op_replace()
1716 if (curbuf->b_ml.ml_flags & ML_EMPTY) in op_change()
3011 if (curbuf->b_ml.ml_flags & ML_EMPTY) in cursor_pos_info()
H A Dbuffer.c772 buf->b_ml.ml_flags = ML_EMPTY; // empty buffer in buf_clear_file()
3718 if (curbuf->b_ml.ml_flags & ML_EMPTY) in fileinfo()
4604 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) in build_stl_str_hl()
4676 num = (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) || l < 0 ? in build_stl_str_hl()
H A Dedit.c5051 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) in ins_tab()
5055 curbuf->b_ml.ml_flags = in ins_tab()
5056 (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY; in ins_tab()
H A Darglist.c778 && (curbuf->b_ml.ml_flags & ML_EMPTY) in ex_argedit()
H A Dex_docmd.c531 if (curbuf->b_ml.ml_flags & ML_EMPTY) in do_exmode()
550 if (curbuf->b_ml.ml_flags & ML_EMPTY) in do_exmode()
6250 if (curbuf->b_ml.ml_flags & ML_EMPTY) in ex_print()
7170 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); in ex_read()
H A Dfileio.c739 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY); in readfile()
2360 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY)) in readfile()
H A Dex_cmds.c3263 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); in ex_append()
3424 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete in ex_change()
H A Dchange.c2356 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete in del_lines()
H A Dbufwrite.c1641 if (buf->b_ml.ml_flags & ML_EMPTY) in buf_write()
H A Dstructs.h764 int ml_flags; member
H A Ddrawscreen.c734 (wp->w_buffer->b_ml.ml_flags & ML_EMPTY) in win_redr_ruler()
H A Dterminal.c1664 int empty = (buf->b_ml.ml_flags & ML_EMPTY); in add_scrollback_line_to_buffer()
5346 while (!(curbuf->b_ml.ml_flags & ML_EMPTY)) in term_load_dump()
H A Dchannel.c2634 int empty = (buffer->b_ml.ml_flags & ML_EMPTY) ? 1 : 0; in append_to_buffer()
H A Dnormal.c7502 empty = (curbuf->b_ml.ml_flags & ML_EMPTY); in nv_put_opt()
H A Dquickfix.c4687 while ((curbuf->b_ml.ml_flags & ML_EMPTY) == 0) in qf_fill_buffer()
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt16093 Solution: Use descriptive values for ml_flags. (ZyX)