aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-25 11:13:29 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-26 03:41:24 +0200
commit6944abad2f3f443027af1966a2a310034d2179b2 (patch)
treee7fba1e2be738d0a89d9aafdfb1ae0c92586af05 /runtime
parentc8e1af93de90b2e23579f726fd4aa6a65f9387b6 (diff)
downloadrneovim-6944abad2f3f443027af1966a2a310034d2179b2.tar.gz
rneovim-6944abad2f3f443027af1966a2a310034d2179b2.tar.bz2
rneovim-6944abad2f3f443027af1966a2a310034d2179b2.zip
api/ext_tabline: List of Dicts.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/msgpack_rpc.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/msgpack_rpc.txt b/runtime/doc/msgpack_rpc.txt
index da9b2360e3..261e68cfb1 100644
--- a/runtime/doc/msgpack_rpc.txt
+++ b/runtime/doc/msgpack_rpc.txt
@@ -440,9 +440,10 @@ states might be represented as separate modes.
*ui-ext-tabline*
["tabline_update", curtab, tabs]
- Nvim will send this event when drawing tabline. curtab is the tab id
- of the current tab. tabs is an array of the form:
- [tabid, { "name": name }]
+ Tabline was updated. UIs should present this data in a custom tabline
+ widget.
+ curtab: Current Tabpage
+ tabs: List of Dicts [{ "tab": Tabpage, "name": String }, ...]
==============================================================================
vim:tw=78:ts=8:noet:ft=help:norl: