mirror of
https://github.com/neovim/neovim.git
synced 2026-04-21 14:55:33 +00:00
vim-patch:9.1.1944: getwininfo() does not return if statusline is visible (#36828)
Problem: gewininfo() does not return if statusline is visible
Solution: Add status_height to the dict items returned by
getwininfo() (Hirohito Higashi)
closes: vim/vim#18841
a04ab5f04c
Co-authored-by: Hirohito Higashi <h.east.727@gmail.com>
This commit is contained in:
9
runtime/lua/vim/_meta/vimfn.lua
generated
9
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -4012,8 +4012,12 @@ function vim.fn.gettext(text) end
|
||||
--- 'wrap' is off
|
||||
--- loclist 1 if showing a location list
|
||||
--- quickfix 1 if quickfix or location list window
|
||||
--- terminal 1 if a terminal window
|
||||
--- status_height status lines height (0 or 1)
|
||||
--- tabnr tab page number
|
||||
--- terminal 1 if a terminal window
|
||||
--- textoff number of columns occupied by any
|
||||
--- 'foldcolumn', 'signcolumn' and line
|
||||
--- number in front of the text
|
||||
--- topline first displayed buffer line
|
||||
--- variables a reference to the dictionary with
|
||||
--- window-local variables
|
||||
@@ -4022,9 +4026,6 @@ function vim.fn.gettext(text) end
|
||||
--- otherwise
|
||||
--- wincol leftmost screen column of the window;
|
||||
--- "col" from |win_screenpos()|
|
||||
--- textoff number of columns occupied by any
|
||||
--- 'foldcolumn', 'signcolumn' and line
|
||||
--- number in front of the text
|
||||
--- winid |window-ID|
|
||||
--- winnr window number
|
||||
--- winrow topmost screen line of the window;
|
||||
|
||||
Reference in New Issue
Block a user