Home
last modified time | relevance | path

Searched refs:w_next (Results 1 – 25 of 27) sorted by relevance

12

/vim-8.2.3635/src/
H A Dpopupwin.c1985 prev = prev->w_next; in popup_create()
1986 prev->w_next = wp; in popup_create()
2034 nextwin = twp->w_next; in popup_create()
2257 owp = owp->w_next) in popup_close_and_callback()
2341 nextwp = wp->w_next; in popup_handle_mouse_moved()
2346 nextwp = wp->w_next; in popup_handle_mouse_moved()
2714 first_popupwin = wp->w_next; in popup_close()
2716 prev->w_next = wp->w_next; in popup_close()
2751 *root = wp->w_next; in popup_close_tabpage()
2753 prev->w_next = wp->w_next; in popup_close_tabpage()
[all …]
H A Dwindow.c292 if (wp->w_next == NULL) in do_window()
295 wp = wp->w_next; in do_window()
308 wp = curwin->w_next; in do_window()
2305 wp = wp->w_next; in close_windows()
2636 if (wp->w_next == NULL) in win_close()
2639 wp = wp->w_next; in win_close()
3633 nextwp = wp->w_next; in close_others()
5239 before = after->w_next; in win_append()
5241 wp->w_next = before; in win_append()
5246 after->w_next = wp; in win_append()
[all …]
H A Dsession.c255 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next) in ses_winsizes()
762 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next) in makeopens()
820 if (tab_firstwin->w_next != NULL) in makeopens()
859 for (wp = tab_firstwin; wp != NULL; wp = wp->w_next) in makeopens()
944 if (tab_firstwin->w_next != NULL) in makeopens()
H A Dglobals.h711 #define W_NEXT(wp) ((wp)->w_next)
712 #define FOR_ALL_WINDOWS(wp) for (wp = firstwin; wp != NULL; wp = wp->w_next)
718 ? firstwin : (tp)->tp_firstwin; (wp); (wp) = (wp)->w_next)
726 ? firstwin : (tp)->tp_firstwin; (wp); (wp) = (wp)->w_next)
729 for ((wp) = first_popupwin; (wp) != NULL; (wp) = (wp)->w_next)
731 for ((wp) = (tp)->tp_first_popupwin; (wp) != NULL; (wp) = (wp)->w_next)
H A Dmain.c2783 else if (firstwin->w_next == NULL) in create_windows()
2833 if (curwin->w_next == NULL) in create_windows()
2835 curwin = curwin->w_next; in create_windows()
2953 if (curwin->w_next == NULL) // just checking in edit_buffers()
2955 win_enter(curwin->w_next, FALSE); in edit_buffers()
3011 win = win->w_next; in edit_buffers()
H A Devalwindow.c46 for ( ; wp != NULL; wp = wp->w_next) in win_getid()
187 wp != NULL; wp = wp->w_next) in find_win_by_nr()
373 wp != twin; wp = wp->w_next) in get_winnr()
H A Dex_cmds2.c503 for ( ; wp != NULL && i + 1 < eap->line1; wp = wp->w_next) in ex_listdo()
583 wp = curwin->w_next; in ex_listdo()
H A Dscreen.c3416 if (wp->w_next != NULL || wp->w_status_height) in win_ins_lines()
3421 else if (wp->w_next) in win_ins_lines()
3491 if (wp->w_next || wp->w_status_height || cmdline_row < Rows - 1) in win_del_lines()
3497 win_rest_invalid(wp->w_next); in win_del_lines()
3588 if (wp->w_next != NULL && p_tf) // don't delete/insert on fast terminal in win_do_lines()
3604 wp = wp->w_next; in win_rest_invalid()
4481 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount) in draw_tabline()
H A Dbeval.c263 for (cw = firstwin; cw != wp; cw = cw->w_next) in general_beval_cb()
H A Dversion.c8514 && firstwin->w_next == NULL in maybe_intro_message()
H A Dex_docmd.c5655 for (wp = firstwin; wp->w_next != NULL; wp = wp->w_next) in ex_quit()
6117 if (wp->w_next == NULL) in ex_only()
6120 wp = wp->w_next; in ex_only()
6707 for ( ; wp != NULL && !got_int; wp = wp->w_next) in ex_tabs()
6752 for (wp = firstwin; wp->w_next != NULL && --n > 0; wp = wp->w_next) in ex_resize()
H A Dif_mzsch.c1889 for ( ; w != NULL; w = w->w_next) in get_window_list()
1946 for (wp = firstwin; wp != win; wp = wp->w_next) in get_window_num()
1966 for ( ; win != NULL; win = win->w_next, --fnum) in get_window_by_num()
H A Dif_lua.c1688 luaV_pushwindow(L, win->w_next); in luaV_window_next()
2107 for (win = firstwin; win != NULL; win = win->w_next, n--) in luaV_window()
H A Darglist.c965 wpnext = wp->w_next; in do_arg_all()
H A Dinsexpand.c2220 while ((wp = (wp->w_next != NULL ? wp->w_next : firstwin)) != curwin in ins_compl_next_buf()
H A Dif_ruby.c1666 for (w = firstwin; w != NULL; w = w->w_next, --n) in window_s_aref()
H A Dgui.c3817 for (wincount = 0; wp != NULL; wp = wp->w_next, ++wincount) in get_tabline_label()
4069 for (wp = firstwin; wp != sb->wp && wp != NULL; wp = wp->w_next) in gui_drag_scrollbar()
H A Dterminal.c1914 else if ((*wp)->w_next != NULL) in for_all_windows_and_curwin()
1915 *wp = (*wp)->w_next; in for_all_windows_and_curwin()
3748 for (twp = firstwin; ; twp = twp->w_next) in term_update_window()
H A Dautocmd.c2238 win_T *w = au_pending_free_win->w_next; in apply_autocmds_group()
H A Dstructs.h3414 win_T *w_next; // link to next window member
H A Dgetchar.c2125 wp = wp->w_next) in getchar_common()
H A Ddrawscreen.c271 for (wwp = firstwin; wwp != wp; wwp = wwp->w_next) in update_screen()
H A Dquickfix.c3046 win = curwin->w_next; in qf_goto_win_with_qfl_file()
6561 if (firstwin->w_next != NULL) in wipe_dummy_buffer()
H A Dbuffer.c5243 wpnext = wp->w_next; in ex_buffer_all()
H A Devalfunc.c9894 for (; wp != NULL; wp = wp->w_next) in f_tabpagebuflist()

12