diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-25 10:14:29 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-26 03:41:24 +0200 |
commit | c8e1af93de90b2e23579f726fd4aa6a65f9387b6 (patch) | |
tree | 67619230c63d75051acb399d58eeb3c6dc496dbf /runtime/doc/msgpack_rpc.txt | |
parent | 00843902d3472ac4e74106fc06fa60e599914496 (diff) | |
download | rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.tar.gz rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.tar.bz2 rneovim-c8e1af93de90b2e23579f726fd4aa6a65f9387b6.zip |
api: nvim_ui_attach(): Flatten ext_* options.
Diffstat (limited to 'runtime/doc/msgpack_rpc.txt')
-rw-r--r-- | runtime/doc/msgpack_rpc.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt index 7adc4ca2e9..da9b2360e3 100644 --- a/runtime/doc/msgpack_rpc.txt +++ b/runtime/doc/msgpack_rpc.txt @@ -264,13 +264,11 @@ a dictionary with these (optional) keys: colors. Set to false to use terminal color codes (at most 256 different colors). - `ui_ext` String array of "externalized" widgets. - Widgets in this list will not be drawn by + `ext_popupmenu` Externalize the popupmenu. |ui-ext-popupmenu| + `ext_tabline` Externalize the tabline. |ui-ext-tabline| + Externalized widgets will not be drawn by Nvim; only high-level data will be published - in new UI event kinds. Valid names: - popupmenu |ui-ext-popupmenu| - tabline |ui-ext-tabline| - Defaults to empty. + in new UI event kinds. Nvim will then send msgpack-rpc notifications, with the method name "redraw" and a single argument, an array of screen updates (described below). These |