diff options
| author | Björn Linse <bjorn.linse@gmail.com> | 2020-10-20 22:02:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-20 22:02:06 +0200 |
| commit | 77dc891bfbdcdb84f919f6ff5b535b385c121007 (patch) | |
| tree | 835480d9d4deeee286e3839ae313b4630ab8e122 /runtime/doc/lua.txt | |
| parent | 75996a2cddaa1ee75ee5c9dedd854bc611d3cfc7 (diff) | |
| parent | 18bf216993c16a013f75c049a274bb0e718aee39 (diff) | |
| download | rneovim-77dc891bfbdcdb84f919f6ff5b535b385c121007.tar.gz rneovim-77dc891bfbdcdb84f919f6ff5b535b385c121007.tar.bz2 rneovim-77dc891bfbdcdb84f919f6ff5b535b385c121007.zip | |
Merge pull request #13125 from bfredl/artifical-ci
docs: update api
Diffstat (limited to 'runtime/doc/lua.txt')
| -rw-r--r-- | runtime/doc/lua.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index a53024d420..334bb33c1e 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1031,6 +1031,9 @@ is_callable({f}) *vim.is_callable()* Return: ~ true if `f` is callable, else false +is_valid({opt}) *vim.is_valid()* + TODO: Documentation + list_extend({dst}, {src}, {start}, {finish}) *vim.list_extend()* Extends a list-like table with the values of another list-like table. @@ -1286,7 +1289,9 @@ validate({opt}) *vim.validate()* • arg_value: argument value • fn: any function accepting one argument, returns true if and only if the argument is - valid + valid. Can optionally return an additional + informative error message as the second + returned value. • msg: (optional) error string if validation fails |