diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-02-29 15:27:11 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2016-02-29 16:06:41 +0100 |
commit | 7ab9ff88e6c7d234c5e9189521da539d20b5bfa7 (patch) | |
tree | 9326af04ef2c9b332517210ff81e4648bdfc2d88 /runtime | |
parent | f2ae5a9cc0b93a4373e15a763c56cd391612c0c4 (diff) | |
download | rneovim-7ab9ff88e6c7d234c5e9189521da539d20b5bfa7.tar.gz rneovim-7ab9ff88e6c7d234c5e9189521da539d20b5bfa7.tar.bz2 rneovim-7ab9ff88e6c7d234c5e9189521da539d20b5bfa7.zip |
eval: add v:event, which will contain data events want to propagate to their receivers.
Add helper functions dict_clear and dict_set_keys_readonly.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index ad736e9c81..bc3dda97a5 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1386,6 +1386,10 @@ v:errors Errors found by assert functions, such as |assert_true()|. < If v:errors is set to anything but a list it is made an empty list by the assert function. + *v:event* *event-variable* +v:event Dictionary of event data for the current |autocommand|. The + available keys differ per event type and are specified at the + documentation for each |event|. *v:exception* *exception-variable* v:exception The value of the exception most recently caught and not finished. See also |v:throwpoint| and |throw-variables|. |