diff options
author | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2021-10-17 22:04:53 +0800 |
commit | 6004f9137a5625025cfa76700239d9abcac85f47 (patch) | |
tree | c478439f3ea24fda8cb315b8c8415daf0a3422a3 /runtime | |
parent | 36290a2ebd3d49fa43f90fbdbf32e0cbe4f76d87 (diff) | |
download | rneovim-6004f9137a5625025cfa76700239d9abcac85f47.tar.gz rneovim-6004f9137a5625025cfa76700239d9abcac85f47.tar.bz2 rneovim-6004f9137a5625025cfa76700239d9abcac85f47.zip |
refactor(dirchanged): tab -> tabpage
Match Vim's behavior.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index b7df0fba54..6c41dd3b10 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -520,10 +520,10 @@ DiffUpdated After diffs have been updated. Depending on *DirChanged* DirChanged After the |current-directory| was changed. The pattern can be: - "window" to trigger on `:lcd` - "tab" to trigger on `:tcd` - "global" to trigger on `:cd` - "auto" to trigger on 'autochdir'. + "window" to trigger on `:lcd` + "tabpage" to trigger on `:tcd` + "global" to trigger on `:cd` + "auto" to trigger on 'autochdir'. Sets these |v:event| keys: cwd: current working directory scope: "global", "tab", "window" |