Update runtime files

This commit is contained in:
Bram Moolenaar
2021-10-04 21:32:54 +01:00
parent 78aa5ffe31
commit 6e64922492
50 changed files with 2852 additions and 369 deletions
+9 -2
View File
@@ -1,4 +1,4 @@
*autocmd.txt* For Vim version 8.2. Last change: 2021 Aug 01
*autocmd.txt* For Vim version 8.2. Last change: 2021 Oct 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -940,7 +940,7 @@ ModeChanged After changing the mode. The pattern is
have the value of new_mode when the event was
last triggered.
Usage example to use relative line numbers
when entering visual mode: >
when entering Visual mode: >
:autocmd ModeChanged *:v set relativenumber
< *OptionSet*
OptionSet After setting an option. The pattern is
@@ -1502,6 +1502,13 @@ Example: >
This prevents having the autocommands defined twice (e.g., after sourcing the
.vimrc file again).
*FileExplorer*
There is one group that is recognized by Vim: FileExplorer. If this group
exists Vim assumes that editing a directory is possible and will trigger a
plugin that lists the files in that directory. This is used by the |netrw|
plugin. This allows you to do: >
browse edit
==============================================================================
9. Executing autocommands *autocmd-execute*