diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2021-10-01 09:40:22 +0200 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2021-12-18 08:54:07 -0700 |
commit | 684c782546c04c453a12376bd5d6f57da3948235 (patch) | |
tree | d99c9f6cb3f241cb3ca97db1d7fbea7b18493e1c /src | |
parent | 8a4e26c6fe7530a0e24268cd373f0d4e53fe81e1 (diff) | |
download | rneovim-684c782546c04c453a12376bd5d6f57da3948235.tar.gz rneovim-684c782546c04c453a12376bd5d6f57da3948235.tar.bz2 rneovim-684c782546c04c453a12376bd5d6f57da3948235.zip |
docs(autocmd): update docs to match implementation
docs(reg_recorded): add links to relevant docs
docs(Recording): update docs to match implementation
docs(Q) update references of Q to be gQ
docs(autocmd) add description about state of reg_record{ing,ed} for RecordingLeave
docs(vim_diff) add Recording{Enter,Leave} to features
docs(index) removed duplicate gQ
docs(options) removed line about gQ erroring in visual mode
Update runtime/doc/vim_diff.txt
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
docs(vim_diff) removed double mention of Q
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/auevents.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/auevents.lua b/src/nvim/auevents.lua index 761e385a73..8fe623fc96 100644 --- a/src/nvim/auevents.lua +++ b/src/nvim/auevents.lua @@ -76,7 +76,7 @@ return { 'QuickFixCmdPre', -- before :make, :grep etc. 'QuitPre', -- before :quit 'RecordingEnter', -- when starting to record a macro - 'RecordingLeave', -- when stopping to record a macro + 'RecordingLeave', -- just before a macro stops recording 'RemoteReply', -- upon string reception from a remote vim 'SearchWrapped', -- after the search wrapped around 'SessionLoadPost', -- after loading a session file |