diff src/proto/window.pro @ 8534:485d4d8a97f6 v7.4.1557

commit https://github.com/vim/vim/commit/86edef664efccbfe685906c854b9cdd04e56f2d5 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 13 18:07:30 2016 +0100 patch 7.4.1557 Problem: Windows cannot be identified. Solution: Add a unique window number to each window and functions to use it.
author Christian Brabandt <cb@256bit.org>
date Sun, 13 Mar 2016 18:15:05 +0100
parents 21b0a39d13ed
children 09041d2fd7d0
line wrap: on
line diff
--- a/src/proto/window.pro
+++ b/src/proto/window.pro
@@ -83,4 +83,8 @@ void clear_matches(win_T *wp);
 matchitem_T *get_match(win_T *wp, int id);
 int get_win_number(win_T *wp, win_T *first_win);
 int get_tab_number(tabpage_T *tp);
+int win_getid(typval_T *argvars);
+int win_gotoid(typval_T *argvars);
+void win_id2tabwin(typval_T *argvars, list_T *list);
+int win_id2win(typval_T *argvars);
 /* vim: set ft=c : */