diff options
| author | marvim <marvim@users.noreply.github.com> | 2022-03-20 18:00:30 +0000 |
|---|---|---|
| committer | marvim <marvim@users.noreply.github.com> | 2022-03-20 18:00:30 +0000 |
| commit | 809dd65396e37db275e28ca7a6f87cc4485a1b35 (patch) | |
| tree | aef2c7aa3aaca7107f6c951053acf3f9f712a31d /runtime/doc/lua.txt | |
| parent | e7391191e27768dc6d603f3846d9b4e09c003cb5 (diff) | |
| download | rneovim-809dd65396e37db275e28ca7a6f87cc4485a1b35.tar.gz rneovim-809dd65396e37db275e28ca7a6f87cc4485a1b35.tar.bz2 rneovim-809dd65396e37db275e28ca7a6f87cc4485a1b35.zip | |
docs: regenerate [skip ci]
Diffstat (limited to 'runtime/doc/lua.txt')
| -rw-r--r-- | runtime/doc/lua.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 93386ddfe9..bd821c4f9e 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -1259,6 +1259,10 @@ vim.wo *vim.wo* ============================================================================== Lua module: vim *lua-vim* + *vim.connection_failure_errmsg()* +connection_failure_errmsg({consequence}) + TODO: Documentation + defer_fn({fn}, {timeout}) *vim.defer_fn()* Defers calling `fn` until `timeout` ms passes. @@ -1550,7 +1554,7 @@ startswith({s}, {prefix}) *vim.startswith()* tbl_add_reverse_lookup({o}) *vim.tbl_add_reverse_lookup()* Add the reverse lookup values to an existing table. For - example: tbl_add_reverse_lookup { A = 1 } == { [1] = 'A , A = 1 }` + example: `tbl_add_reverse_lookup { A = 1 } == { [1] = 'A', A = 1 }` Parameters: ~ {o} table The table to add the reverse to. @@ -1990,7 +1994,7 @@ set({mode}, {lhs}, {rhs}, {opts}) *vim.keymap.set()* vim.keymap.set('n', 'asdf', require('jkl').my_fun) < - the require('jkl )` gets evaluated during this call in order to access the + the `require('jkl')` gets evaluated during this call in order to access the function. If you want to avoid this cost at startup you can wrap it in a function, for example: > |
