diff options
Diffstat (limited to 'runtime/doc/autocmd.txt')
-rw-r--r-- | runtime/doc/autocmd.txt | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index dc236fc78f..1393131ab7 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -253,6 +253,7 @@ Name triggered by ~ |BufNew| just after creating a new buffer |SwapExists| detected an existing swap file +|TermOpen| when a terminal buffer is starting Options |FileType| when the 'filetype' option has been set @@ -307,7 +308,6 @@ Name triggered by ~ |InsertLeave| when leaving Insert mode |InsertCharPre| when a character was typed in Insert mode, before inserting it -|JobActivity| when something interesting happens with a job |TextChanged| after a change was made to the text in Normal mode |TextChangedI| after a change was made to the text in Insert mode @@ -733,10 +733,6 @@ InsertEnter Just before starting Insert mode. Also for *InsertLeave* InsertLeave When leaving Insert mode. Also when using CTRL-O |i_CTRL-O|. But not for |i_CTRL-C|. - {Nvim} *JobActivity* -JobActivity When something interesting happens with a job - spawned by |jobstart()|. See |job-control| for - details. *MenuPopup* MenuPopup Just before showing the popup menu (under the right mouse button). Useful for adjusting the @@ -876,6 +872,11 @@ TermChanged After the value of 'term' has changed. Useful for re-loading the syntax file to update the colors, fonts and other terminal-dependent settings. Executed for all loaded buffers. + {Nvim} *TermOpen* +TermOpen When a terminal buffer is starting. This can + be used to configure the terminal emulator by + setting buffer variables. + See |nvim-terminal-emulator| for details. *TermResponse* TermResponse After the response to |t_RV| is received from the terminal. The value of |v:termresponse| |