aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-15 19:50:23 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-04-15 21:06:16 +0800
commitbcc971de15ed540356405f937d640eaffa4a03bb (patch)
treeebd853d8e81134cd7dad02ed4c7bd51849f8683b /src/nvim/eval.lua
parenteb151a9730f0000ff46e0b3467e29bb9f02ae362 (diff)
downloadrneovim-bcc971de15ed540356405f937d640eaffa4a03bb.tar.gz
rneovim-bcc971de15ed540356405f937d640eaffa4a03bb.tar.bz2
rneovim-bcc971de15ed540356405f937d640eaffa4a03bb.zip
vim-patch:9.0.0269: getscriptinfo() does not include the version
Problem: getscriptinfo() does not include the version. Cannot select entries by script name. Solution: Add the "version" item and the "name" argument. (Yegappan Lakshmanan, closes vim/vim#10962) https://github.com/vim/vim/commit/520f6ef60a59f7b5f3da9199999d13dbe817d3ce Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r--src/nvim/eval.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua
index 66032adbaf..7dbfac80f3 100644
--- a/src/nvim/eval.lua
+++ b/src/nvim/eval.lua
@@ -189,7 +189,7 @@ return {
gettabinfo={args={0, 1}, base=1},
gettabvar={args={2, 3}, base=1},
gettabwinvar={args={3, 4}, base=1},
- getscriptinfo={},
+ getscriptinfo={args={0, 1}},
gettagstack={args={0, 1}, base=1},
gettext={args=1, base=1},
getwininfo={args={0, 1}, base=1},