diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:50:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:50:35 +0200 |
commit | 49e649fc2eb196b2476a3bc2947c7a89e0f69c2f (patch) | |
tree | 64955601e26e5749b5d1f3217746d899424778e5 /runtime/doc/eval.txt | |
parent | 84a05acc8c341c2be383198496764992ae971a46 (diff) | |
download | vim-git-49e649fc2eb196b2476a3bc2947c7a89e0f69c2f.tar.gz |
updated for version 7.3.926v7.3.926
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter
on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of
events for :tablose and :tabnew.
Solution: Fix these autocommand events. (Zyx)
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 3c6d68be5..60f01b46f 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5320,8 +5320,6 @@ settabvar({tabnr}, {varname}, {val}) *settabvar()* |t:var| Note that the variable name without "t:" must be used. Tabs are numbered starting with one. - Vim briefly goes to the tab page {tabnr}, this may trigger - TabLeave and TabEnter autocommands. This function is not available in the |sandbox|. settabwinvar({tabnr}, {winnr}, {varname}, {val}) *settabwinvar()* @@ -5334,8 +5332,6 @@ settabwinvar({tabnr}, {winnr}, {varname}, {val}) *settabwinvar()* doesn't work for a global or local buffer variable. For a local buffer option the global value is unchanged. Note that the variable name without "w:" must be used. - Vim briefly goes to the tab page {tabnr}, this may trigger - TabLeave and TabEnter autocommands. Examples: > :call settabwinvar(1, 1, "&list", 0) :call settabwinvar(3, 2, "myvar", "foobar") |