diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-08-31 22:41:44 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-10-03 20:06:32 +0100 |
commit | 8b7615c735325245cff20907fbd7e0470a0d00d0 (patch) | |
tree | d7f691523dd5b7fbec778e794103268d739ef3e5 /src/nvim/eval.lua | |
parent | 3137c7d63574a86ddc44f11c839e8e58c2994bf9 (diff) | |
download | rneovim-8b7615c735325245cff20907fbd7e0470a0d00d0.tar.gz rneovim-8b7615c735325245cff20907fbd7e0470a0d00d0.tar.bz2 rneovim-8b7615c735325245cff20907fbd7e0470a0d00d0.zip |
vim-patch:8.1.1952: more functions can be used as a method
Problem: More functions can be used as a method.
Solution: Allow more functions to be used as a method.
https://github.com/vim/vim/commit/5d69fdb7c4b91faf2d92b8d449cc9460f3035fb3
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 83a72cc233..cc38a0734e 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -172,15 +172,15 @@ return { gettabinfo={args={0, 1}, base=1}, gettabvar={args={2, 3}, base=1}, gettabwinvar={args={3, 4}, base=1}, - gettagstack={args={0, 1}}, - getwininfo={args={0, 1}}, - getwinpos={args={0, 1}}, + gettagstack={args={0, 1}, base=1}, + getwininfo={args={0, 1}, base=1}, + getwinpos={args={0, 1}, base=1}, getwinposx={}, getwinposy={}, - getwinvar={args={2, 3}}, - glob={args={1, 4}}, - glob2regpat={args=1}, - globpath={args={2, 5}}, + getwinvar={args={2, 3}, base=1}, + glob={args={1, 4}, base=1}, + glob2regpat={args=1, base=1}, + globpath={args={2, 5}, base=2}, has={args=1}, has_key={args=2, base=1}, haslocaldir={args={0,2}}, |