diff options
author | bfredl <bjorn.linse@gmail.com> | 2024-04-21 09:31:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 09:31:24 +0200 |
commit | f42ab1dc4848eceab12c7180c2b9049da29a9ba6 (patch) | |
tree | fe46c69dad53636c83aaed9c0cf44d765087658c /runtime/doc | |
parent | 344906a08f0972108eb912c87af32b275ecf318e (diff) | |
parent | b5a38530ba18b324c739e1d087bd78e4a0a6d4b3 (diff) | |
download | rneovim-f42ab1dc4848eceab12c7180c2b9049da29a9ba6.tar.gz rneovim-f42ab1dc4848eceab12c7180c2b9049da29a9ba6.tar.bz2 rneovim-f42ab1dc4848eceab12c7180c2b9049da29a9ba6.zip |
Merge pull request #27872 from luukvbaal/cmdheight
fix(ui): don't force 'cmdheight' to zero with ext_messages
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/ui.txt | 7 |
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. |