summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-04 15:04:10 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-04 15:04:10 +0200
commit25e42231d3ee27feec2568fa4be2aa2bfba82ae5 (patch)
tree8df08d27ff06c8b52054576bc68814d05553697a
parent7cc535175a233c6f02cdb5a364b3590560f5bfcb (diff)
patch 8.1.1807: more functions can be used as a methodv8.1.1807
Problem: More functions can be used as a method. Solution: Add append(), appendbufline(), assert_equal(), etc. Also add the :eval command.
-rw-r--r--runtime/doc/eval.txt66
-rw-r--r--runtime/doc/testing.txt13
-rw-r--r--src/evalfunc.c1076
-rw-r--r--src/ex_cmdidxs.h46
-rw-r--r--src/ex_cmds.h3
-rw-r--r--src/ex_eval.c12
-rw-r--r--src/proto/ex_eval.pro1
-rw-r--r--src/testdir/test_method.vim25
-rw-r--r--src/version.c2
9 files changed, 679 insertions, 565 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 925446a9ca..c86d13d533 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 8.1. Last change: 2019 Jul 30
+*eval.txt* For Vim version 8.1. Last change: 2019 Aug 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -840,12 +840,14 @@ Expression syntax summary, from least to most significant:
expr8[expr1 : expr1] substring of a String or sublist of a |List|
expr8.name entry in a |Dictionary|
expr8(expr1, ...) function call with |Funcref| variable
+ expr8->name(expr1, ...) |method| call
|expr9| number number constant
"string" string constant, backslash is special
'string' string constant, ' is doubled
[expr1, ...] |List|
{expr1: expr1, ...} |Dictionary|
+ #{key: expr1, ...} |Dictionary|
&option option value
(expr1) nested expression
variable internal variable
@@ -1111,10 +1113,10 @@ expr8 *expr8*
-----
This expression is either |expr9| or a sequence of the alternatives below,
in any order. E.g., these are all possible:
- expr9[expr1].name
- expr9.name[expr1]
- expr9(expr1, ...)[expr1].name
- expr9->(expr1, ...)[expr1]
+ expr8[expr1].name
+ expr8.name[expr1]
+ expr8(expr1, ...)[expr1].name
+ expr8->(expr1, ...)[expr1]
Evaluation is always from left to right.
@@ -1217,10 +1219,17 @@ When expr8 is a |Funcref| type variable, invoke the function it refers to.
expr8->name([args]) method call *method*
-For global methods this is the same as: >
+For methods that are also available as global functions this is the same as: >
name(expr8 [, args])
There can also be methods specifically for the type of "expr8".
+"->name(" must not contain white space. There can be white space before "->"
+and after the "(".
+
+This allows for chaining, using the type that the method returns: >
+ mylist->filter(filterexpr)->map(mapexpr)->sort()->join()
+<
+
*expr9*
number
------
@@ -2906,6 +2915,10 @@ append({lnum}, {text}) *append()*
:let failed = append(line('$'), "# THE END")
:let failed = append(0, ["Chapter 1", "the beginning"])
+< Can also be used as a |method| after a List: >
+ mylist->append(lnum)
+
+
appendbufline({expr}, {lnum}, {text}) *appendbufline()*
Like |append()| but append the text in buffer {expr}.
@@ -2921,8 +2934,11 @@ appendbufline({expr}, {lnum}, {text}) *appendbufline()*
error message is given. Example: >
:let failed = appendbufline(13, 0, "# THE START")
<
- *argc()*
-argc([{winid}])
+ Can also be used as a |method| after a List: >
+ mylist->appendbufline(buf, lnum)
+
+
+argc([{winid}]) *argc()*
The result is the number of files in the argument list. See
|arglist|.
If {winid} is not supplied, the argument list of the current
@@ -3762,6 +3778,9 @@ eval({string}) Evaluate {string} and return the result. Especially useful to
of them. Also works for |Funcref|s that refer to existing
functions.
+ Can also be used as a |method|: >
+ argv->join()->eval()
+
eventhandler() *eventhandler()*
Returns 1 when inside an event handler. That is that Vim got
interrupted while waiting for the user to type a character,
@@ -4115,7 +4134,12 @@ filereadable({file}) *filereadable()*
expression, which is used as a String.
If you don't care about the file being readable you can use
|glob()|.
- *file_readable()*
+ {file} is used as-is, you may want to expand wildcards first: >
+ echo filereadable('~/.vimrc')
+ 0
+ echo filereadable(expand('~/.vimrc'))
+ 1
+< *file_readable()*
Obsolete name: file_readable().
@@ -7998,9 +8022,9 @@ sha256({string}) *sha256()*
shellescape({string} [, {special}]) *shellescape()*
Escape {string} for use as a shell command argument.
- On MS-Windows and MS-DOS, when 'shellslash' is not set, it
- will enclose {string} in double quotes and double all double
- quotes within {string}.
+ On MS-Windows, when 'shellslash' is not set, it will enclose
+ {string} in double quotes and double all double quotes within
+ {string}.
Otherwise it will enclose {string} in single quotes and
replace all "'" with "'\''".
@@ -10047,6 +10071,10 @@ This function can then be called with: >
The recursiveness of user functions is restricted with the |'maxfuncdepth'|
option.
+It is also possible to use `:eval`. It does not support a range, but does
+allow for method chaining, e.g.: >
+ eval GetList()->Filter()->append('$')
+
AUTOMATICALLY LOADING FUNCTIONS ~
*autoload-functions*
@@ -10498,6 +10526,20 @@ text...
Unlock the internal variable {name}. Does the
opposite of |:lockvar|.
+ *:eval*
+:eval {expr} Evaluate {expr} and discard the result. Example: >
+ :eval Getlist()->Filter()->append('$')
+
+< The expression is supposed to have a side effect,
+ since the resulting value is not used. In the example
+ the `append()` call appends the List with text to the
+ buffer. This is similar to `:call` but works with any
+ expression.
+
+ The command can be shortened to `:ev` or `:eva`, but
+ these are hard to recognize and therefore not to be
+ used.
+
:if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580*
:en[dif] Execute the commands until the next matching ":else"
diff --git a/runtime/doc/testing.txt b/runtime/doc/testing.txt
index 6fe6b8e5f2..b51a1e1d8c 100644
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -1,4 +1,4 @@
-*testing.txt* For Vim version 8.1. Last change: 2019 Jul 28
+*testing.txt* For Vim version 8.1. Last change: 2019 Aug 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -222,7 +222,11 @@ assert_equal({expected}, {actual} [, {msg}])
< Will result in a string to be added to |v:errors|:
test.vim line 12: Expected 'foo' but got 'bar' ~
- *assert_equalfile()*
+ Can also be used as a |method|: >
+ mylist->assert_equal([1, 2, 3])
+
+
+< *assert_equalfile()*
assert_equalfile({fname-one}, {fname-two})
When the files {fname-one} and {fname-two} do not contain
exactly the same text an error message is added to |v:errors|.
@@ -294,7 +298,10 @@ assert_notequal({expected}, {actual} [, {msg}])
|v:errors| when {expected} and {actual} are equal.
Also see |assert-return|.
- *assert_notmatch()*
+ Can also be used as a |method|: >
+ mylist->assert_notequal([1, 2, 3])
+
+< *assert_notmatch()*
assert_notmatch({pattern}, {actual} [, {msg}])
The opposite of `assert_match()`: add an error message to
|v:errors| when {pattern} matches {actual}.
diff --git a/src/evalfunc.c b/src/evalfunc.c
index 7213e0d19c..3b7b901dac 100644
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -414,610 +414,620 @@ static void f_xor(typval_T *argvars, typval_T *rettv);
*/
typedef struct
{
- char *f_name; /* function name */
- char f_min_argc; /* minimal number of arguments */
- char f_max_argc; /* maximal number of arguments */
+ char *f_name; // function name
+ char f_min_argc; // minimal number of arguments
+ char f_max_argc; // maximal number of arguments
+ char f_argtype; // for method: FEARG_ values
void (*f_func)(typval_T *args, typval_T *rvar);
- /* implementation of function */
+ // implementation of function
} funcentry_T;
static funcentry_T global_functions[] =
{
#ifdef FEAT_FLOAT
- {"abs", 1, 1, f_abs},
- {"acos", 1, 1, f_acos}, /* WJMc */
-#endif
- {"add", 2, 2, f_add},
- {"and", 2, 2, f_and},
- {"append", 2, 2, f_append},
- {"appendbufline", 3, 3, f_appendbufline},
- {"argc", 0, 1, f_argc},
- {"argidx", 0, 0, f_argidx},
- {"arglistid", 0, 2, f_arglistid},
- {"argv", 0, 2, f_argv},
+ {"abs", 1, 1, 0, f_abs},
+ {"acos", 1, 1, 0, f_acos}, // WJMc
+#endif
+ {"add", 2, 2, 0, f_add},
+ {"and", 2, 2, 0, f_and},
+ {"append", 2, 2, 0, f_append},
+ {"appendbufline", 3, 3, 0, f_appendbufline},
+ {"argc", 0, 1, 0, f_argc},
+ {"argidx", 0, 0, 0, f_argidx},
+ {"arglistid", 0, 2, 0, f_arglistid},
+ {"argv", 0, 2, 0, f_argv},
#ifdef FEAT_FLOAT
- {"asin", 1, 1, f_asin}, /* WJMc */
-#endif
- {"assert_beeps", 1, 2, f_assert_beeps},
- {"assert_equal", 2, 3, f_assert_equal},
- {"assert_equalfile", 2, 2, f_assert_equalfile},
- {"assert_exception", 1, 2, f_assert_exception},
- {"assert_fails", 1, 3, f_assert_fails},
- {"assert_false", 1, 2, f_assert_false},
- {"assert_inrange", 3, 4, f_assert_inrange},
- {"assert_match", 2, 3, f_assert_match},
- {"assert_notequal", 2, 3, f_assert_notequal},
- {"assert_notmatch", 2, 3, f_assert_notmatch},
- {"assert_report", 1, 1, f_assert_report},
- {"assert_true", 1, 2, f_assert_true},
+ {"asin", 1, 1, 0, f_asin}, // WJMc
+#endif
+ {"assert_beeps", 1, 2, 0, f_assert_beeps},
+ {"assert_equal", 2, 3, 0, f_assert_equal},
+ {"assert_equalfile", 2, 2, 0, f_assert_equalfile},
+ {"assert_exception", 1, 2, 0, f_assert_exception},
+ {"assert_fails", 1, 3, 0, f_assert_fails},
+ {"assert_false", 1, 2, 0, f_assert_false},
+ {"assert_inrange", 3, 4, 0, f_assert_inrange},
+ {"assert_match", 2, 3, 0, f_assert_match},
+ {"assert_notequal", 2, 3, 0, f_assert_notequal},
+ {"assert_notmatch", 2, 3, 0, f_assert_notmatch},
+ {"assert_report", 1, 1, 0, f_assert_report},
+ {"assert_true", 1, 2, 0, f_assert_true},
#ifdef FEAT_FLOAT
- {"atan", 1, 1, f_atan},
- {"atan2", 2, 2, f_atan2},
+ {"atan", 1, 1, 0, f_atan},
+ {"atan2", 2, 2, 0, f_atan2},
#endif
#ifdef FEAT_BEVAL
- {"balloon_gettext", 0, 0, f_balloon_gettext},
- {"balloon_show", 1, 1, f_balloon_show},
+ {"balloon_gettext", 0, 0, 0, f_balloon_gettext},
+ {"balloon_show", 1, 1, 0, f_balloon_show},
# if defined(FEAT_BEVAL_TERM)
- {"balloon_split", 1, 1, f_balloon_split},
+ {"balloon_split", 1, 1, 0, f_balloon_split},
# endif
#endif
- {"browse", 4, 4, f_browse},
- {"browsedir", 2, 2, f_browsedir},
- {"bufadd", 1, 1, f_bufadd},
- {"bufexists", 1, 1, f_bufexists},
- {"buffer_exists", 1, 1, f_bufexists}, /* obsolete */
- {"buffer_name", 1, 1, f_bufname}, /* obsolete */
- {"buffer_number", 1, 1, f_bufnr}, /* obsolete */
- {"buflisted", 1, 1, f_buflisted},
- {"bufload", 1, 1, f_bufload},
- {"bufloaded", 1, 1, f_bufloaded},
- {"bufname", 1, 1, f_bufname},
- {"bufnr", 1, 2, f_bufnr},
- {"bufwinid", 1, 1, f_bufwinid},
- {"bufwinnr", 1, 1, f_bufwinnr},
- {"byte2line", 1, 1, f_byte2line},
- {"byteidx", 2, 2, f_byteidx},
- {"byteidxcomp", 2, 2, f_byteidxcomp},
- {"call", 2, 3, f_call},
+ {"browse", 4, 4, 0, f_browse},
+ {"browsedir", 2, 2, 0, f_browsedir},
+ {"bufadd", 1, 1, 0, f_bufadd},
+ {"bufexists", 1, 1, 0, f_bufexists},
+ {"buffer_exists", 1, 1, 0, f_bufexists}, // obsolete
+ {"buffer_name", 1, 1, 0, f_bufname}, // obsolete
+ {"buffer_number", 1, 1, 0, f_bufnr}, // obsolete
+ {"buflisted", 1, 1, 0, f_buflisted},
+ {"bufload", 1, 1, 0, f_bufload},
+ {"bufloaded", 1, 1, 0, f_bufloaded},
+ {"bufname", 1, 1, 0, f_bufname},
+ {"bufnr", 1, 2, 0, f_bufnr},
+ {"bufwinid", 1, 1, 0, f_bufwinid},
+ {"bufwinnr", 1, 1, 0, f_bufwinnr},
+ {"byte2line", 1, 1, 0, f_byte2line},
+ {"byteidx", 2, 2, 0, f_byteidx},
+ {"byteidxcomp", 2, 2, 0, f_byteidxcomp},
+ {"call", 2, 3, 0, f_call},
#ifdef FEAT_FLOAT
- {"ceil", 1, 1, f_ceil},
+ {"ceil", 1, 1, 0, f_ceil},
#endif
#ifdef FEAT_JOB_CHANNEL
- {"ch_canread", 1, 1, f_ch_canread},
- {"ch_close", 1, 1, f_ch_close},
- {"ch_close_in", 1, 1, f_ch_close_in},
- {"ch_evalexpr", 2, 3, f_ch_evalexpr},
- {"ch_evalraw", 2, 3, f_ch_evalraw},
- {"ch_getbufnr", 2, 2, f_ch_getbufnr},
- {"ch_getjob", 1, 1, f_ch_getjob},
- {"ch_info", 1, 1, f_ch_info},
- {"ch_log", 1, 2, f_ch_log},
- {"ch_logfile", 1, 2, f_ch_logfile},
- {"ch_open", 1, 2, f_ch_open},
- {"ch_read", 1, 2, f_ch_read},
- {"ch_readblob", 1, 2, f_ch_readblob},
- {"ch_readraw", 1, 2, f_ch_readraw},
- {"ch_sendexpr", 2, 3, f_ch_sendexpr},
- {"ch_sendraw", 2, 3, f_ch_sendraw},
- {"ch_setoptions", 2, 2, f_ch_setoptions},
- {"ch_status", 1, 2, f_ch_status},
-#endif
- {"changenr", 0, 0, f_changenr},
- {"char2nr", 1, 2, f_char2nr},
- {"chdir", 1, 1, f_chdir},
- {"cindent", 1, 1, f_cindent},
- {"clearmatches", 0, 1, f_clearmatches},
- {"col", 1, 1, f_col},
+ {"ch_canread", 1, 1, 0, f_ch_canread},
+ {"ch_close", 1, 1, 0, f_ch_close},
+ {"ch_close_in", 1, 1, 0, f_ch_close_in},
+ {"ch_evalexpr", 2, 3, 0, f_ch_evalexpr},
+ {"ch_evalraw", 2, 3, 0, f_ch_evalraw},
+ {"ch_getbufnr", 2, 2, 0, f_ch_getbufnr},
+ {"ch_getjob", 1, 1, 0, f_ch_getjob},
+ {"ch_info", 1, 1, 0, f_ch_info},
+ {"ch_log", 1, 2, 0, f_ch_log},
+ {"ch_logfile", 1, 2, 0, f_ch_logfile},
+ {"ch_open", 1, 2, 0, f_ch_open},
+ {"ch_read", 1, 2, 0, f_ch_read},
+ {"ch_readblob", 1, 2, 0, f_ch_readblob},
+ {"ch_readraw", 1, 2, 0, f_ch_readraw},
+ {"ch_sendexpr", 2, 3, 0, f_ch_sendexpr},
+ {"ch_sendraw", 2, 3, 0, f_ch_sendraw},
+ {"ch_setoptions", 2, 2, 0, f_ch_setoptions},
+ {"ch_status", 1, 2, 0, f_ch_status},
+#endif
+ {"changenr", 0, 0, 0, f_changenr},
+ {"char2nr", 1, 2, 0, f_char2nr},
+ {"chdir", 1, 1, 0, f_chdir},
+ {"cindent", 1, 1, 0, f_cindent},
+ {"clearmatches", 0, 1, 0, f_clearmatches},
+ {"col", 1, 1, 0, f_col},
#if defined(FEAT_INS_EXPAND)
- {"complete", 2, 2, f_complete},
- {"complete_add", 1, 1, f_complete_add},
- {"complete_check", 0, 0, f_complete_check},
- {"complete_info", 0, 1, f_complete_info},
+ {"complete", 2, 2, 0, f_complete},
+ {"complete_add", 1, 1, 0, f_complete_add},
+ {"complete_check", 0, 0, 0, f_complete_check},
+ {"complete_info", 0, 1, 0, f_complete_info},
#endif
- {"confirm", 1, 4, f_confirm},
- {"copy", 1, 1, f_copy},
+ {"confirm", 1, 4, 0, f_confirm},
+ {"copy", 1, 1, 0, f_copy},
#ifdef FEAT_FLOAT
- {"cos", 1, 1, f_cos},
- {"cosh", 1, 1, f_cosh},
+ {"cos", 1, 1, 0, f_cos},
+ {"cosh", 1, 1, 0, f_cosh},
#endif
- {"count", 2, 4, f_count},
- {"cscope_connection",0,3, f_cscope_connection},
- {"cursor", 1, 3, f_cursor},
+ {"count", 2, 4, 0, f_count},
+ {"cscope_connection",0,3, 0, f_cscope_connection},
+ {"cursor", 1, 3, 0, f_cursor},
#ifdef MSWIN
- {"debugbreak", 1, 1, f_debugbreak},
-#endif
- {"deepcopy", 1, 2, f_deepcopy},
- {"delete", 1, 2, f_delete},
- {"deletebufline", 2, 3, f_deletebufline},
- {"did_filetype", 0, 0, f_did_filetype},
- {"diff_filler", 1, 1, f_diff_filler},
- {"diff_hlID", 2, 2, f_diff_hlID},
- {"empty", 1, 1, f_empty},
- {"environ", 0, 0, f_environ},
- {"escape", 2, 2, f_escape},
- {"eval", 1, 1, f_eval},
- {"eventhandler", 0, 0, f_eventhandler},
- {"executable", 1, 1, f_executable},
- {"execute", 1, 2, f_execute},
- {"exepath", 1, 1, f_exepath},
- {"exists", 1, 1, f_exists},
+ {"debugbreak", 1, 1, 0, f_debugbreak},
+#endif
+ {"deepcopy", 1, 2, 0, f_deepcopy},
+ {"delete", 1, 2, 0, f_delete},
+ {"deletebufline", 2, 3, 0, f_deletebufline},
+ {"did_filetype", 0, 0, 0, f_did_filetype},
+ {"diff_filler", 1, 1, 0, f_diff_filler},
+ {"diff_hlID", 2, 2, 0, f_diff_hlID},
+ {"empty", 1, 1, 0, f_empty},
+ {"environ", 0, 0, 0, f_environ},
+ {"escape", 2, 2, 0, f_escape},
+ {"eval", 1, 1, 0, f_eval},
+ {"eventhandler", 0, 0, 0, f_eventhandler},
+ {"executable", 1, 1, 0, f_executable},
+ {"execute", 1, 2, 0, f_execute},
+ {"exepath", 1, 1, 0, f_exepath},
+ {"exists", 1, 1, 0, f_exists},
#ifdef FEAT_FLOAT
- {"exp", 1, 1, f_exp},
-#endif
- {"expand", 1, 3, f_expand},
- {"expandcmd", 1, 1, f_expandcmd},
- {"extend", 2, 3, f_extend},
- {"feedkeys", 1, 2, f_feedkeys},
- {"file_readable", 1, 1, f_filereadable}, /* obsolete */
- {"filereadable", 1, 1, f_filereadable},
- {"filewritable", 1, 1, f_filewritable},
- {"filter", 2, 2, f_filter},
- {"finddir", 1, 3, f_finddir},
- {"findfile", 1, 3, f_findfile},
+ {"exp", 1, 1, 0, f_exp},
+#endif
+ {"expand", 1, 3, 0, f_expand},
+ {"expandcmd", 1, 1, 0, f_expandcmd},
+ {"extend", 2, 3, 0, f_extend},
+ {"feedkeys", 1, 2, 0, f_feedkeys},
+ {"file_readable", 1, 1, 0, f_filereadable}, // obsolete
+ {"filereadable", 1, 1, 0, f_filereadable},
+ {"filewritable", 1, 1, 0, f_filewritable},
+ {"filter", 2, 2, 0, f_filter},
+ {"finddir", 1, 3, 0, f_finddir},
+ {"findfile", 1, 3, 0, f_findfile},
#ifdef FEAT_FLOAT
- {"float2nr", 1, 1, f_float2nr},
- {"floor", 1, 1, f_floor},
- {"fmod", 2, 2, f_fmod},
-#endif
- {"fnameescape", 1, 1, f_fnameescape},
- {"fnamemodify", 2, 2, f_fnamemodify},
- {"foldclosed", 1, 1, f_foldclosed},
- {"foldclosedend", 1, 1, f_foldclosedend},
- {"foldlevel", 1, 1, f_foldlevel},
- {"foldtext", 0, 0, f_foldtext},
- {"foldtextresult", 1, 1, f_foldtextresult},
- {"foreground", 0, 0, f_foreground},
- {"funcref", 1, 3, f_funcref},
- {"function", 1, 3, f_function},
- {"garbagecollect", 0, 1, f_garbagecollect},
- {"get", 2, 3, f_get},
- {"getbufinfo", 0, 1, f_getbufinfo},
- {"getbufline", 2, 3, f_getbufline},
- {"getbufvar", 2, 3, f_getbufvar},
- {"getchangelist", 1, 1, f_getchangelist},
- {"getchar", 0, 1, f_getchar},
- {"getcharmod", 0, 0, f_getcharmod},
- {"getcharsearch", 0, 0, f_getcharsearch},
- {"getcmdline", 0, 0, f_getcmdline},
- {"getcmdpos", 0, 0, f_getcmdpos},
- {"getcmdtype", 0, 0, f_getcmdtype},
- {"getcmdwintype", 0, 0, f_getcmdwintype},
+ {"float2nr", 1, 1, 0, f_float2nr},
+ {"floor", 1, 1, 0, f_floor},
+ {"fmod", 2, 2, 0, f_fmod},
+#endif
+ {"fnameescape", 1, 1, 0, f_fnameescape},
+ {"fnamemodify", 2, 2, 0, f_fnamemodify},
+ {"foldclosed", 1, 1, 0, f_foldclosed},
+ {"foldclosedend", 1, 1, 0, f_foldclosedend},
+ {"foldlevel", 1, 1, 0, f_foldlevel},
+ {"foldtext", 0, 0, 0, f_foldtext},
+ {"foldtextresult", 1, 1, 0, f_foldtextresult},
+ {"foreground", 0, 0, 0, f_foreground},
+ {"funcref", 1, 3, 0, f_funcref},
+ {"function", 1, 3, 0, f_function},
+ {"garbagecollect", 0, 1, 0, f_garbagecollect},
+ {"get", 2, 3, 0, f_get},
+ {"getbufinfo", 0, 1, 0, f_getbufinfo},
+ {"getbufline", 2, 3, 0, f_getbufline},
+ {"getbufvar", 2, 3, 0, f_getbufvar},
+ {"getchangelist", 1, 1, 0, f_getchangelist},
+ {"getchar", 0, 1, 0, f_getchar},
+ {"getcharmod", 0, 0, 0, f_getcharmod},
+ {"getcharsearch", 0, 0, 0, f_getcharsearch},
+ {"getcmdline", 0, 0, 0, f_getcmdline},
+ {"getcmdpos", 0, 0, 0, f_getcmdpos},
+ {"getcmdtype", 0, 0, 0, f_getcmdtype},
+ {"getcmdwintype", 0, 0, 0, f_getcmdwintype},
#if defined(FEAT_CMDL_COMPL)
- {"getcompletion", 2, 3, f_getcompletion},
-#endif
- {"getcurpos", 0, 0, f_getcurpos},
- {"getcwd", 0, 2, f_getcwd},
- {"getenv", 1, 1, f_getenv},
- {"getfontname", 0, 1, f_getfontname},
- {"getfperm", 1, 1, f_getfperm},
- {"getfsize", 1, 1, f_getfsize},
- {"getftime", 1, 1, f_getftime},
- {"getftype", 1, 1, f_getftype},
- {"getjumplist", 0, 2, f_getjumplist},
- {"getline", 1, 2, f_getline},
- {"getloclist", 1, 2, f_getloclist},
- {"getmatches", 0, 1, f_getmatches},
- {"getpid", 0, 0, f_getpid},
- {"getpos", 1, 1, f_getpos},
- {"getqflist", 0, 1, f_getqflist},
- {"getreg", 0, 3, f_getreg},
- {"getregtype", 0, 1, f_getregtype},
- {"gettabinfo", 0, 1, f_gettabinfo},
- {"gettabvar", 2, 3, f_gettabvar},
- {"gettabwinvar", 3, 4, f_gettabwinvar},
- {"gettagstack", 0, 1, f_gettagstack},
- {"getwininfo", 0, 1, f_getwininfo},
- {"getwinpos", 0, 1, f_getwinpos},
- {"getwinposx", 0, 0, f_getwinposx},
- {"getwinposy", 0, 0, f_getwinposy},
- {"getwinvar", 2, 3, f_getwinvar},
- {"glob", 1, 4, f_glob},
- {"glob2regpat", 1, 1, f_glob2regpat},
- {"globpath", 2, 5, f_globpath},
- {"has", 1, 1, f_has},
- {"has_key", 2, 2, f_has_key},
- {"haslocaldir", 0, 2, f_haslocaldir},
- {"hasmapto", 1, 3, f_hasmapto},
- {"highlightID", 1, 1, f_hlID}, /* obsolete */
- {"highlight_exists",1, 1, f_hlexists}, /* obsolete */
- {"histadd", 2, 2, f_histadd},
- {"histdel", 1, 2, f_histdel},
- {"histget", 1, 2, f_histget},
- {"histnr", 1, 1, f_histnr},
- {"hlID", 1, 1, f_hlID},
- {"hlexists", 1, 1, f_hlexists},
- {"hostname", 0, 0, f_hostname},
- {"iconv", 3, 3, f_iconv},
- {"indent", 1, 1, f_indent},
- {"index", 2, 4, f_index},
- {"input", 1, 3, f_input},
- {"inputdialog", 1, 3, f_inputdialog},
- {"inputlist", 1, 1, f_inputlist},
- {"inputrestore", 0, 0, f_inputrestore},
- {"inputsave", 0, 0, f_inputsave},
- {"inputsecret", 1, 2, f_inputsecret},
- {"insert", 2, 3, f_insert},
- {"invert", 1, 1, f_invert},
- {"isdirectory", 1, 1, f_isdirectory},
+ {"getcompletion", 2, 3, 0, f_getcompletion},
+#endif
+ {"getcurpos", 0, 0, 0, f_getcurpos},
+ {"getcwd", 0, 2, 0, f_getcwd},
+ {"getenv", 1, 1, 0, f_getenv},
+ {"getfontname", 0, 1, 0, f_getfontname},
+ {"getfperm", 1, 1, 0, f_getfperm},
+ {"getfsize", 1, 1, 0, f_getfsize},
+ {"getftime", 1, 1, 0, f_getftime},
+ {"getftype", 1, 1, 0, f_getftype},
+ {"getjumplist", 0, 2, 0, f_getjumplist},
+ {"getline", 1, 2, 0, f_getline},
+ {"getloclist", 1, 2, 0, f_getloclist},
+ {"getmatches", 0, 1, 0, f_getmatches},
+ {"getpid", 0, 0, 0, f_getpid},
+ {"getpos", 1, 1, 0, f_getpos},
+ {"getqflist", 0, 1, 0, f_getqflist},
+ {"getreg", 0, 3, 0, f_getreg},
+ {"getregtype", 0, 1, 0, f_getregtype},
+ {"gettabinfo", 0, 1, 0, f_gettabinfo},
+ {"gettabvar", 2, 3, 0, f_gettabvar},
+ {"gettabwinvar", 3, 4, 0, f_gettabwinvar},
+ {"gettagstack", 0, 1, 0, f_gettagstack},
+ {"getwininfo", 0, 1, 0, f_getwininfo},
+ {"getwinpos", 0, 1, 0, f_getwinpos},
+ {"getwinposx", 0, 0, 0, f_getwinposx},
+ {"getwinposy", 0, 0, 0, f_getwinposy},
+ {"getwinvar", 2, 3, 0, f_getwinvar},
+ {"glob", 1, 4, 0, f_glob},
+ {"glob2regpat", 1, 1, 0, f_glob2regpat},
+ {"globpath", 2, 5, 0, f_globpath},
+ {"has", 1, 1, 0, f_has},
+ {"has_key", 2, 2, 0, f_has_key},
+ {"haslocaldir", 0, 2, 0, f_haslocaldir},
+ {"hasmapto", 1, 3, 0, f_hasmapto},
+ {"highlightID", 1, 1, 0, f_hlID}, // obsolete
+ {"highlight_exists",1, 1, 0, f_hlexists}, // obsolete
+ {"histadd", 2, 2, 0, f_histadd},
+ {"histdel", 1, 2, 0, f_histdel},
+ {"histget", 1, 2, 0, f_histget},
+ {"histnr", 1, 1, 0, f_histnr},
+ {"hlID", 1, 1, 0, f_hlID},
+ {"hlexists", 1, 1, 0, f_hlexists},
+ {"hostname", 0, 0, 0, f_hostname},
+ {"iconv", 3, 3, 0, f_iconv},
+ {"indent", 1, 1, 0, f_indent},
+ {"index", 2, 4, 0, f_index},
+ {"input", 1, 3, 0, f_input},
+ {"inputdialog", 1, 3, 0, f_inputdialog},
+ {"inputlist", 1, 1, 0, f_inputlist},
+ {"inputrestore", 0, 0, 0, f_inputrestore},
+ {"inputsave", 0, 0, 0, f_inputsave},
+ {"inputsecret", 1, 2, 0, f_inputsecret},
+ {"insert", 2, 3, 0, f_insert},
+ {"invert", 1, 1, 0, f_invert},
+ {"isdirectory", 1, 1, 0, f_isdirectory},
#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
- {"isinf", 1, 1, f_isinf},
+ {"isinf", 1, 1, 0, f_isinf},
#endif
- {"islocked", 1, 1, f_islocked},
+ {"islocked", 1, 1, 0, f_islocked},
#if defined(FEAT_FLOAT) && defined(HAVE_MATH_H)
- {"isnan", 1, 1, f_isnan},
+ {"isnan", 1, 1, 0, f_isnan},
#endif
- {"items", 1, 1, f_items},
+ {"items", 1, 1, 0, f_items},
#ifdef FEAT_JOB_CHANNEL
- {"job_getchannel", 1, 1, f_job_getchannel},
- {"job_info", 0, 1, f_job_info},
- {"job_setoptions", 2, 2, f_job_setoptions},
- {"job_start", 1, 2, f_job_start},
- {"job_status", 1, 1, f_job_status},
- {"job_stop", 1, 2, f_job_stop},
-#endif
- {"join", 1, 2, f_join},
- {"js_decode", 1, 1, f_js_decode},
- {"js_encode", 1, 1, f_js_encode},
- {"json_decode", 1, 1, f_json_decode},
- {"json_encode", 1, 1, f_json_encode},
- {"keys", 1, 1, f_keys},
- {"last_buffer_nr", 0, 0, f_last_buffer_nr},/* obsolete */
- {"len", 1, 1, f_len},
- {"libcall", 3, 3, f_libcall},
- {"libcallnr", 3, 3, f_libcallnr},
- {"line", 1, 1, f_line},
- {"line2byte", 1, 1, f_line2byte},
- {"lispindent", 1, 1, f_lispindent},
- {"list2str", 1, 2, f_list2str},
- {"listener_add", 1, 2, f_listener_add},
- {"listener_flush", 0, 1, f_listener_flush},
- {"listener_remove", 1, 1, f_listener_remove},
- {"localtime", 0, 0, f_localtime},
+ {"job_getchannel", 1, 1, 0, f_job_getchannel},
+ {"job_info", 0, 1, 0, f_job_info},
+ {"job_setoptions", 2, 2, 0, f_job_setoptions},
+ {"job_start", 1, 2, 0, f_job_start},
+ {"job_status", 1, 1, 0, f_job_status},
+ {"job_stop", 1, 2, 0, f_job_stop},
+#endif
+ {"join", 1, 2, 0, f_join},
+ {"js_decode", 1, 1, 0, f_js_decode},
+ {"js_encode", 1, 1, 0, f_js_encode},
+ {"json_decode", 1, 1, 0, f_json_decode},
+ {"json_encode", 1, 1, 0, f_json_encode},
+ {"keys", 1, 1, 0, f_keys},
+ {"last_buffer_nr", 0, 0, 0, f_last_buffer_nr}, // obsolete
+ {"len", 1, 1, 0, f_len},
+ {"libcall", 3, 3, 0, f_libcall},
+ {"libcallnr", 3, 3, 0, f_libcallnr},
+ {"line", 1, 1, 0, f_line},
+ {"line2byte", 1, 1, 0, f_line2byte},
+ {"lispindent", 1, 1, 0, f_lispindent},
+ {"list2str", 1, 2, 0, f_list2str},
+ {"listener_add", 1, 2, 0, f_listener_add},
+ {"listener_flush", 0, 1, 0, f_listener_flush},
+ {"listener_remove", 1, 1, 0, f_listener_remove},
+ {"localtime", 0, 0, 0, f_localtime},
#ifdef FEAT_FLOAT
- {"log", 1, 1, f_log},
- {"log10", 1, 1, f_log10},
+ {"log", 1, 1, 0, f_log},
+ {"log10", 1, 1, 0, f_log10},
#endif
#ifdef FEAT_LUA
- {"luaeval", 1, 2, f_luaeval},
-#endif
- {"map", 2, 2, f_map},
- {"maparg", 1, 4, f_maparg},
- {"mapcheck", 1, 3, f_mapcheck},
- {"match", 2, 4, f_match},
- {"matchadd", 2, 5, f_matchadd},
- {"matchaddpos", 2, 5, f_matchaddpos},
- {"matcharg", 1, 1, f_matcharg},
- {"matchdelete", 1, 2, f_matchdelete},
- {"matchend", 2, 4, f_matchend},
- {"matchlist", 2, 4, f_matchlist},
- {"matchstr", 2, 4, f_matchstr},
- {"matchstrpos", 2, 4, f_matchstrpos},
- {"max", 1, 1, f_max},
- {"min", 1, 1, f_min},
- {"mkdir", 1, 3, f_mkdir},
- {"mode", 0, 1, f_mode},
+ {"luaeval", 1, 2, 0, f_luaeval},
+#endif
+ {"map", 2, 2, 0, f_map},
+ {"maparg", 1, 4, 0, f_maparg},
+ {"mapcheck", 1, 3, 0, f_mapcheck},
+ {"match", 2, 4, 0, f_match},
+ {"matchadd", 2, 5, 0, f_matchadd},
+ {"matchaddpos", 2, 5, 0, f_matchaddpos},
+ {"matcharg", 1, 1, 0, f_matcharg},
+ {"matchdelete", 1, 2, 0, f_matchdelete},
+ {"matchend", 2, 4, 0, f_matchend},
+ {"matchlist", 2, 4, 0, f_matchlist},
+ {"matchstr", 2, 4, 0, f_matchstr},
+ {"matchstrpos", 2, 4, 0, f_matchstrpos},
+ {"max", 1, 1, 0, f_max},
+ {"min", 1, 1, 0, f_min},
+ {"mkdir", 1, 3, 0, f_mkdir},
+ {"mode", 0, 1, 0, f_mode},
#ifdef FEAT_MZSCHEME
- {"mzeval", 1, 1, f_mzeval},
+ {"mzeval", 1, 1, 0, f_mzeval},
#endif
- {"nextnonblank", 1, 1, f_nextnonblank},
- {"nr2char", 1, 2, f_nr2char},
- {"or", 2, 2, f_or},
- {"pathshorten", 1, 1, f_pathshorten},
+ {"nextnonblank", 1, 1, 0, f_nextnonblank},
+ {"nr2char", 1, 2, 0, f_nr2char},
+ {"or", 2, 2, 0, f_or},
+ {"pathshorten", 1, 1, 0, f_pathshorten},
#ifdef FEAT_PERL
- {"perleval", 1, 1, f_perleval},
+ {"perleval", 1, 1, 0, f_perleval},
#endif
#ifdef FEAT_TEXT_PROP
- {"popup_atcursor", 2, 2, f_popup_atcursor},
- {"popup_beval", 2, 2, f_popup_beval},
- {"popup_clear", 0, 0, f_popup_clear},
- {"popup_close", 1, 2, f_popup_close},
- {"popup_create", 2, 2, f_popup_create},
- {"popup_dialog", 2, 2, f_popup_dialog},
- {"popup_filter_menu", 2, 2, f_popup_filter_menu},
- {"popup_filter_yesno", 2, 2, f_popup_filter_yesno},
- {"popup_getoptions", 1, 1, f_popup_getoptions},
- {"popup_getpos", 1, 1, f_popup_getpos},
- {"popup_getpreview", 0, 0, f_popup_getpreview},
- {"popup_hide", 1, 1, f_popup_hide},
- {"popup_locate", 2, 2, f_popup_locate},
- {"popup_menu", 2, 2, f_popup_menu},
- {"popup_move", 2, 2, f_popup_move},
- {"popup_notification", 2, 2, f_popup_notification},
- {"popup_setoptions", 2, 2, f_popup_setoptions},
- {"popup_settext", 2, 2, f_popup_settext},
- {"popup_show", 1, 1, f_popup_show},
+ {"popup_atcursor", 2, 2, 0, f_popup_atcursor},
+ {"popup_beval", 2, 2, 0, f_popup_beval},
+ {"popup_clear", 0, 0, 0, f_popup_clear},
+ {"popup_close", 1, 2, 0, f_popup_close},
+ {"popup_create", 2, 2, 0, f_popup_create},
+ {"popup_dialog", 2, 2, 0, f_popup_dialog},
+ {"popup_filter_menu", 2, 2, 0, f_popup_filter_menu},
+ {"popup_filter_yesno", 2, 2, 0, f_popup_filter_yesno},
+ {"popup_getoptions", 1, 1, 0, f_popup_getoptions},
+ {"popup_getpos", 1, 1, 0, f_popup_getpos},
+ {"popup_getpreview", 0, 0, 0, f_popup_getpreview},
+ {"popup_hide", 1, 1, 0, f_popup_hide},
+ {"popup_locate", 2, 2, 0, f_popup_locate},
+ {"popup_menu", 2, 2, 0, f_popup_menu},
+ {"popup_move", 2, 2, 0, f_popup_move},
+ {"popup_notification", 2, 2, 0, f_popup_notification},
+ {"popup_setoptions", 2, 2, 0, f_popup_setoptions},
+ {"popup_settext", 2, 2, 0, f_popup_settext},
+ {"popup_show", 1, 1, 0, f_popup_show},
#endif
#ifdef FEAT_FLOAT
- {"pow", 2, 2, f_pow},
+ {"pow", 2, 2, 0, f_pow},
#endif
- {"prevnonblank", 1, 1, f_prevnonblank},
- {"printf", 1, 19, f_printf},
+ {"prevnonblank", 1, 1, 0, f_prevnonblank},
+ {"printf", 1, 19, 0, f_printf},
#ifdef FEAT_JOB_CHANNEL
- {"prompt_setcallback", 2, 2, f_prompt_setcallback},
- {"prompt_setinterrupt", 2, 2, f_prompt_setinterrupt},
- {"prompt_setprompt", 2, 2, f_prompt_setprompt},
+ {"prompt_setcallback", 2, 2, 0, f_prompt_setcallback},
+ {"prompt_setinterrupt", 2, 2, 0, f_prompt_setinterrupt},
+ {"prompt_setprompt", 2, 2, 0, f_prompt_setprompt},
#endif
#ifdef FEAT_TEXT_PROP
- {"prop_add", 3, 3, f_prop_add},
- {"prop_clear", 1, 3, f_prop_clear},
- {"prop_list", 1, 2, f_prop_list},
- {"prop_remove", 1, 3, f_prop_remove},
- {"prop_type_add", 2, 2, f_prop_type_add},
- {"prop_type_change", 2, 2, f_prop_type_change},
- {"prop_type_delete", 1, 2, f_prop_type_delete},
- {"prop_type_get", 1, 2, f_prop_type_get},
- {"prop_type_list", 0, 1, f_prop_type_list},
-#endif
- {"pumvisible", 0, 0, f_pumvisible},
+ {"prop_add", 3, 3, 0, f_prop_add},
+ {"prop_clear", 1, 3, 0, f_prop_clear},
+ {"prop_list", 1, 2, 0, f_prop_list},
+ {"prop_remove", 1, 3, 0, f_prop_remove},
+ {"prop_type_add", 2, 2, 0, f_prop_type_add},
+ {"prop_type_change", 2, 2, 0, f_prop_type_change},
+ {"prop_type_delete", 1, 2, 0, f_prop_type_delete},
+ {"prop_type_get", 1, 2, 0, f_prop_type_get},
+ {"prop_type_list", 0, 1, 0, f_prop_type_list},
+#endif
+ {"pumvisible", 0, 0, 0, f_pumvisible},
#ifdef FEAT_PYTHON3
- {"py3eval", 1, 1, f_py3eval},
+ {"py3eval", 1, 1, 0, f_py3eval},
#endif
#ifdef FEAT_PYTHON
- {"pyeval", 1, 1, f_pyeval},
+ {"pyeval", 1, 1, 0, f_pyeval},
#endif
#if defined(FEAT_PYTHON) || defined(FEAT_PYTHON3)
- {"pyxeval", 1, 1, f_pyxeval},
-#endif
- {"range", 1, 3, f_range},
- {"readdir", 1, 2, f_readdir},
- {"readfile", 1, 3, f_readfile},
- {"reg_executing", 0, 0, f_reg_executing},
- {"reg_recording", 0, 0, f_reg_recording},
- {"reltime", 0, 2, f_reltime},
+ {"pyxeval", 1, 1, 0, f_pyxeval},
+#endif
+ {"range", 1, 3, 0, f_range},
+ {"readdir", 1, 2, 0, f_readdir},
+ {"readfile", 1, 3, 0, f_readfile},
+ {"reg_executing", 0, 0, 0, f_reg_executing},
+ {"reg_recording", 0, 0, 0, f_reg_recording},
+ {"reltime", 0, 2, 0, f_reltime},
#ifdef FEAT_FLOAT
- {"reltimefloat", 1, 1, f_reltimefloat},
-#endif
- {"reltimestr", 1, 1, f_reltimestr},
- {"remote_expr", 2, 4, f_remote_expr},
- {"remote_foreground", 1, 1, f_remote_foreground},
- {"remote_peek", 1, 2, f_remote_peek},
- {"remote_read", 1, 2, f_remote_read},
- {"remote_send", 2, 3, f_remote_send},
- {"remote_startserver", 1, 1, f_remote_startserver},
- {"remove", 2, 3, f_remove},
- {"rename", 2, 2, f_rename},
- {"repeat", 2, 2, f_repeat},
- {"resolve", 1, 1, f_resolve},
- {"reverse", 1, 1, f_reverse},
+ {"reltimefloat", 1, 1, 0, f_reltimefloat},
+#endif
+ {"reltimestr", 1, 1, 0, f_reltimestr},
+ {"remote_expr", 2, 4, 0, f_remote_expr},
+ {"remote_foreground", 1, 1, 0, f_remote_foreground},
+ {"remote_peek", 1, 2, 0, f_remote_peek},
+ {"remote_read", 1, 2, 0, f_remote_read},
+ {"remote_send", 2, 3, 0, f_remote_send},
+ {"remote_startserver", 1, 1, 0, f_remote_startserver},
+ {"remove", 2, 3, 0, f_remove},
+ {"rename", 2, 2, 0, f_rename},
+ {"repeat", 2, 2, 0, f_repeat},
+ {"resolve", 1, 1, 0, f_resolve},
+ {"reverse", 1, 1, 0, f_reverse},
#ifdef FEAT_FLOAT
- {"round", 1, 1, f_round},
+ {"round", 1, 1, 0, f_round},
#endif
#ifdef FEAT_RUBY
- {"rubyeval", 1, 1, f_rubyeval},
-#endif
- {"screenattr", 2, 2, f_screenattr},
- {"screenchar", 2, 2, f_screenchar},
- {"screenchars", 2, 2, f_screenchars},
- {"screencol", 0, 0, f_screencol},
- {"screenpos", 3, 3, f_screenpos},
- {"screenrow", 0, 0, f_screenrow},
- {"screenstring", 2, 2, f_screenstring},
- {"search", 1, 4, f_search},
- {"searchdecl", 1, 3, f_searchdecl},
- {"searchpair", 3, 7, f_searchpair},
- {"searchpairpos", 3, 7, f_searchpairpos},
- {"searchpos", 1, 4, f_searchpos},
- {"server2client", 2, 2, f_server2client},
- {"serverlist", 0, 0, f_serverlist},
- {"setbufline", 3, 3, f_setbufline},
- {"setbufvar", 3, 3, f_setbufvar},
- {"setcharsearch", 1, 1, f_setcharsearch},
- {"setcmdpos", 1, 1, f_setcmdpos},
- {"setenv", 2, 2, f_setenv},
- {"setfperm", 2, 2, f_setfperm},
- {"setline", 2, 2, f_setline},
- {"setloclist", 2, 4, f_setloclist},
- {"setmatches", 1, 2, f_setmatches},
- {"setpos", 2, 2, f_setpos},
- {"setqflist", 1, 3, f_setqflist},
- {"setreg", 2, 3, f_setreg},
- {"settabvar", 3, 3, f_settabvar},
- {"settabwinvar", 4, 4, f_settabwinvar},
- {"settagstack", 2, 3, f_settagstack},
- {"setwinvar", 3, 3, f_setwinvar},
+ {"rubyeval", 1, 1, 0, f_rubyeval},
+#endif
+ {"screenattr", 2, 2, 0, f_screenattr},
+ {"screenchar", 2, 2, 0, f_screenchar},
+ {"screenchars", 2, 2, 0, f_screenchars},
+ {"screencol", 0, 0, 0, f_screencol},
+ {"screenpos", 3, 3, 0, f_screenpos},
+ {"screenrow", 0, 0, 0, f_screenrow},
+ {"screenstring", 2, 2, 0, f_screenstring},
+ {"search", 1, 4, 0, f_search},
+ {"searchdecl", 1, 3, 0, f_searchdecl},
+ {"searchpair", 3, 7, 0, f_searchpair},
+ {"searchpairpos", 3, 7, 0, f_searchpairpos},
+ {"searchpos", 1, 4, 0, f_searchpos},
+ {"server2client", 2, 2, 0, f_server2client},
+ {"serverlist", 0, 0, 0, f_serverlist},
+ {"setbufline", 3, 3, 0, f_setbufline},
+ {"setbufvar", 3, 3, 0, f_setbufvar},
+ {"setcharsearch", 1, 1, 0, f_setcharsearch},
+ {"setcmdpos", 1, 1, 0, f_setcmdpos},
+ {"setenv", 2,