aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorLuuk van Baal <luukvbaal@gmail.com>2024-03-15 12:54:39 +0100
committerLuuk van Baal <luukvbaal@gmail.com>2024-04-20 15:44:12 +0200
commitb5a38530ba18b324c739e1d087bd78e4a0a6d4b3 (patch)
tree366a27e59f59fc1aa3dae4f62e0cee97892f965f /runtime/doc
parentf190f758ac58d9cc955368e047b070e0a2261033 (diff)
downloadrneovim-b5a38530ba18b324c739e1d087bd78e4a0a6d4b3.tar.gz
rneovim-b5a38530ba18b324c739e1d087bd78e4a0a6d4b3.tar.bz2
rneovim-b5a38530ba18b324c739e1d087bd78e4a0a6d4b3.zip
fix(ui): don't force 'cmdheight' to zero with ext_messages
Remove remaining code that prevents non-zero 'cmdheight' with ext_messages.
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/ui.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/ui.txt b/runtime/doc/ui.txt
index 5f217c5537..969851f027 100644
--- a/runtime/doc/ui.txt
+++ b/runtime/doc/ui.txt
@@ -777,9 +777,10 @@ This UI extension delegates presentation of messages and dialogs. Messages
that would otherwise render in the message/cmdline screen space, are emitted
as UI events.
-Nvim will not allocate screen space for the cmdline or messages, and
-'cmdheight' will be forced zero. Cmdline state is emitted as |ui-cmdline|
-events, which the UI must handle.
+Nvim will not allocate screen space for the cmdline or messages. 'cmdheight'
+will be set to zero, but can be changed and used for the replacing cmdline or
+message window. Cmdline state is emitted as |ui-cmdline| events, which the UI
+must handle.
["msg_show", kind, content, replace_last] ~
Display a message to the user.