diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-09-01 12:02:56 +0100 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-10-03 20:12:20 +0100 |
commit | d23d37b212d7b47ae1f729de5e0ea46b456ad2e5 (patch) | |
tree | 0b80bf043842e00b5a3928b6fb4e698ddad496b7 /src/nvim/eval.lua | |
parent | 86593beaa40035a10a664d3147327a01f4885cb7 (diff) | |
download | rneovim-d23d37b212d7b47ae1f729de5e0ea46b456ad2e5.tar.gz rneovim-d23d37b212d7b47ae1f729de5e0ea46b456ad2e5.tar.bz2 rneovim-d23d37b212d7b47ae1f729de5e0ea46b456ad2e5.zip |
vim-patch:8.1.1961: 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. Add a test for
mapcheck().
https://github.com/vim/vim/commit/a1449836334355b1fb00cd1bf083e7d353f6c4d7
mzeval() (if_mzscheme) is N/A.
Diffstat (limited to 'src/nvim/eval.lua')
-rw-r--r-- | src/nvim/eval.lua | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index 572e32e5a7..854bfd5f61 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -236,22 +236,22 @@ return { log10={args=1, base=1, func="float_op_wrapper", data="&log10"}, luaeval={args={1, 2}, base=1}, map={args=2, base=1}, - maparg={args={1, 4}}, - mapcheck={args={1, 3}}, - match={args={2, 4}}, - matchadd={args={2, 5}}, - matchaddpos={args={2, 5}}, - matcharg={args=1}, - matchdelete={args={1, 2}}, - matchend={args={2, 4}}, - matchlist={args={2, 4}}, - matchstr={args={2, 4}}, - matchstrpos={args={2,4}}, + maparg={args={1, 4}, base=1}, + mapcheck={args={1, 3}, base=1}, + match={args={2, 4}, base=1}, + matchadd={args={2, 5}, base=1}, + matchaddpos={args={2, 5}, base=1}, + matcharg={args=1, base=1}, + matchdelete={args={1, 2}, base=1}, + matchend={args={2, 4}, base=1}, + matchlist={args={2, 4}, base=1}, + matchstr={args={2, 4}, base=1}, + matchstrpos={args={2,4}, base=1}, max={args=1, base=1}, menu_get={args={1, 2}}, min={args=1, base=1}, - mkdir={args={1, 3}}, - mode={args={0, 1}}, + mkdir={args={1, 3}, base=1}, + mode={args={0, 1}, base=1}, msgpackdump={args={1, 2}}, msgpackparse={args=1}, nextnonblank={args=1}, |