diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/msgpack_rpc.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt index 77cbc2f3d8..c550631a32 100644 --- a/runtime/doc/msgpack_rpc.txt +++ b/runtime/doc/msgpack_rpc.txt @@ -266,7 +266,11 @@ a dictionary with these (optional) keys: most 256 different colors). `popupmenu_external` Instead of drawing the completion popupmenu on the grid, Nvim will send higher-level events to - the ui and let it draw the popupmenu. + the UI and let it draw the popupmenu. + Defaults to false. + `tabline_external` Instead of drawing the tabline on the grid, + Nvim will send higher-level events to + the UI and let it draw the tabline. Defaults to false. Nvim will then send msgpack-rpc notifications, with the method name "redraw" @@ -436,5 +440,10 @@ states might be represented as separate modes. ["popupmenu_hide"] The popupmenu is hidden. +["tabline_update", curtab, tabs] + Nvim will send this event when drawing tabline. curtab is the tab id + of the current tab. tabs is an arrays of the form: + [tabid, { "name": name }] + ============================================================================== vim:tw=78:ts=8:noet:ft=help:norl: |