Home
last modified time | relevance | path

Searched refs:winrow (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/testdir/
H A Dtest_cursor_func.vim86 let [winrow, wincol] = win_screenpos(winid)
87 call assert_equal({'row': winrow,
91 call assert_equal({'row': winrow,
95 call assert_equal({'row': winrow + 2,
100 call assert_equal({'row': winrow + 3,
111 call assert_equal({'row': winrow + wininfo.height - 1,
115 call assert_equal({'row': winrow - 1, 'col': 0, 'curscol': 0, 'endcol': 0},
137 let [winrow, wincol] = win_screenpos(winid)
139 call assert_equal(winrow, pos.row)
H A Dtest_bufwintabinfo.vim66 let tablineheight = winlist[0].winrow == 2 ? 1 : 0
67 call assert_equal(tablineheight + 1, winlist[0].winrow)
73 call assert_equal(tablineheight + winheight(1) + 2, winlist[1].winrow)
76 call assert_equal(tablineheight + 1, winlist[2].winrow)
H A Dtest_terminal3.vim891 let [winrow, wincol] = win_screenpos(0)
893 let yoff = winrow * (has('gui_running') ? 20 : 10) + 200
H A Dtest_popupwin.vim2604 \ winid: win_getid(), winrow: a:row, wincol: a:col,
2611 \ winid: a:winid, winrow: a:row - 1, wincol: a:col - 3,
2618 \ winid: a:winid, winrow: a:row - 1, wincol: a:col - 3,
/vim-8.2.3635/src/
H A Dmouse.c3064 varnumber_T winrow = 0; in f_getmousepos() local
3094 winrow = row + 1; in f_getmousepos()
3116 dict_add_number(d, "winrow", winrow); in f_getmousepos()
/vim-8.2.3635/runtime/doc/
H A Deval.txt6025 winrow row inside "winid"
6390 winrow topmost screen line of the window;
H A Dversion8.txt27072 Solution: Add "wincol" and "winrow" to what getwininfo() returns.
27090 Solution: Add one to "wincol" and "winrow" from getwininfo().