diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-05-23 20:34:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-23 20:34:27 +0200 |
commit | 418abfc9d06923e96f1317419fe83ed4e6d67c1d (patch) | |
tree | 7a6e50a3e6ecff85882d91f0a503a212312ee334 /runtime | |
parent | f1bc152fa081f5d630ea1a027aa5bd00bdbb78f0 (diff) | |
parent | 6da4548f0e7ccaf2b3271c0b0d59b5c8869792a7 (diff) | |
download | rneovim-418abfc9d06923e96f1317419fe83ed4e6d67c1d.tar.gz rneovim-418abfc9d06923e96f1317419fe83ed4e6d67c1d.tar.bz2 rneovim-418abfc9d06923e96f1317419fe83ed4e6d67c1d.zip |
Merge pull request #6743 from bfredl/channel_info
Add methods to enumerate channels and clients to identify themselves
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 0b7cd5b2cd..df36969fe3 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -261,6 +261,8 @@ Name triggered by ~ |SwapExists| detected an existing swap file |TermOpen| when a terminal job starts |TermClose| when a terminal job ends +|ChanOpen| after a channel opened +|ChanInfo| after a channel has its state changed Options |FileType| when the 'filetype' option has been set @@ -487,6 +489,19 @@ BufWriteCmd Before writing the whole buffer to a file. *BufWritePost* BufWritePost After writing the whole buffer to a file (should undo the commands for BufWritePre). + *ChanInfo* +ChanInfo State of channel changed, for instance the + client of a RPC channel described itself. + Sets these |v:event| keys: + info + See |nvim_get_chan_info| for the format of the + info Dictionary. + *ChanOpen* +ChanOpen Just after a channel was opened. + Sets these |v:event| keys: + info + See |nvim_get_chan_info| for the format of the + info Dictionary. *CmdUndefined* CmdUndefined When a user command is used but it isn't defined. Useful for defining a command only |