vim-patch:8.1.1807: more functions can be used as a method

Problem:    More functions can be used as a method.
Solution:   Add append(), appendbufline(), assert_equal(), etc.
            Also add the :eval command.
25e42231d3

:eval is already ported.
This commit is contained in:
Sean Dewar
2021-08-06 17:09:47 +01:00
parent e6be6c307a
commit 003c8acc8a
7 changed files with 83 additions and 26 deletions

View File

@@ -7,7 +7,7 @@
-- arguments.
-- base For methods: the argument to use as the base argument (1-indexed):
-- base->method()
-- Defaults to zero (function cannot be used as a method).
-- Defaults to BASE_NONE (function cannot be used as a method).
-- func Name of the C function which implements the VimL function. Defaults to
-- `f_{funcname}`.
@@ -15,6 +15,10 @@ local varargs = function(nr)
return {nr}
end
-- Usable with the base key: use the last function argument as the method base.
-- Value is from funcs.h file. "BASE_" prefix is omitted.
local LAST = "BASE_LAST"
return {
funcs={
abs={args=1},
@@ -22,15 +26,15 @@ return {
add={args=2, base=1},
['and']={args=2},
api_info={},
append={args=2},
appendbufline={args=3},
append={args=2, base=LAST},
appendbufline={args=3, base=LAST},
argc={args={0, 1}},
argidx={},
arglistid={args={0, 2}},
argv={args={0, 2}},
asin={args=1, func="float_op_wrapper", data="&asin"}, -- WJMc
assert_beeps={args={1}},
assert_equal={args={2, 3}},
assert_equal={args={2, 3}, base=2},
assert_equalfile={args={2, 3}},
assert_exception={args={1, 2}},
assert_fails={args={1, 3}},
@@ -38,7 +42,7 @@ return {
assert_inrange={args={3, 4}},
assert_match={args={2, 3}},
assert_nobeep={args={1}},
assert_notequal={args={2, 3}},
assert_notequal={args={2, 3}, base=2},
assert_notmatch={args={2, 3}},
assert_report={args=1},
assert_true={args={1, 2}},
@@ -99,7 +103,7 @@ return {
empty={args=1, base=1},
environ={},
escape={args=2},
eval={args=1},
eval={args=1, base=1},
eventhandler={},
executable={args=1},
execute={args={1, 2}},