diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-26 07:53:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-26 07:53:07 +0800 |
commit | 66bb1e577c96d8eb63c04dcc737394b4ce2b0f5d (patch) | |
tree | 82fc231a3912ecdba0896a63ef1ef8b5ac05ee43 /src/nvim/eval.lua | |
parent | c644228e1dfe9f70aae53292b328be98dc95b8f7 (diff) | |
download | rneovim-66bb1e577c96d8eb63c04dcc737394b4ce2b0f5d.tar.gz rneovim-66bb1e577c96d8eb63c04dcc737394b4ce2b0f5d.tar.bz2 rneovim-66bb1e577c96d8eb63c04dcc737394b4ce2b0f5d.zip |
vim-patch:9.1.0888: leftcol property not available in getwininfo() (#31349)
Problem: leftcol property not available in getwininfo()
Solution: add leftcol property property (glepnir)
closes: vim/vim#16119
https://github.com/vim/vim/commit/0a850673e3d4193d55f47bcbbc0b0da5f155307d
Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index a418b34909..cd3ccf543e 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -4800,6 +4800,8 @@ M.funcs = { botline last complete displayed buffer line bufnr number of buffer in the window height window height (excluding winbar) + leftcol first column displayed; only used when + 'wrap' is off loclist 1 if showing a location list quickfix 1 if quickfix or location list window terminal 1 if a terminal window |