Home
last modified time | relevance | path

Searched refs:b_prev (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/
H A Dbuffer.c726 if (buf->b_prev == NULL) in close_buffer()
731 lastbuf = buf->b_prev; in close_buffer()
733 buf->b_next->b_prev = buf->b_prev; in close_buffer()
1286 buf = buf->b_prev; in do_buffer_ext()
1484 buf = buf->b_prev; in do_buffer_ext()
1500 buf = curbuf->b_prev; in do_buffer_ext()
2130 buf->b_prev = NULL; in buflist_new()
2149 while (buf->b_prev != NULL && buf->b_fnum < buf->b_prev->b_fnum) in buflist_new()
2157 buf->b_prev = prev->b_prev; in buflist_new()
2158 if (buf->b_prev != NULL) in buflist_new()
[all …]
H A Dex_docmd.c1633 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next; in compute_buffer_local_count()
1641 nextbuf = (offset < 0) ? buf->b_prev : buf->b_next; in compute_buffer_local_count()
1651 nextbuf = (offset >= 0) ? buf->b_prev : buf->b_next; in compute_buffer_local_count()
3246 while (buf->b_prev != NULL in parse_cmd_address()
3248 buf = buf->b_prev; in parse_cmd_address()
4147 if (buf->b_prev == NULL) in get_address()
4149 buf = buf->b_prev; in get_address()
4439 while (buf->b_prev != NULL && buf->b_ml.ml_mfp == NULL) in address_default_all()
4440 buf = buf->b_prev; in address_default_all()
4573 if (buf->b_prev == NULL) in invalid_range()
[all …]
H A Dif_mzsch.c2235 if (buf->b_prev == NULL) in get_prev_buffer()
2238 return buffer_new(buf->b_prev); in get_prev_buffer()
H A Dstructs.h2671 buf_T *b_prev; member
H A Dif_lua.c1563 luaV_pushbuffer(L, buf->b_prev); in luaV_buffer_previous()