diff options
author | luukvbaal <luukvbaal@gmail.com> | 2024-11-20 21:11:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-20 12:11:20 -0800 |
commit | 1b6442034f6a821d357fe59cd75fdae47a7f7cff (patch) | |
tree | 579c72ee7b2f78025407d58722f9abc992f12cc1 /runtime/doc/ui.txt | |
parent | 0e2f92ed79e3c976ab5a41d40380e761e7f69d3a (diff) | |
download | rneovim-1b6442034f6a821d357fe59cd75fdae47a7f7cff.tar.gz rneovim-1b6442034f6a821d357fe59cd75fdae47a7f7cff.tar.bz2 rneovim-1b6442034f6a821d357fe59cd75fdae47a7f7cff.zip |
fix(messages): more ext_messages kinds #31279
Add kinds for various commands that output a list, the 'wildmode'
list, and for number prompts.
Diffstat (limited to 'runtime/doc/ui.txt')
-rw-r--r-- | runtime/doc/ui.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/ui.txt b/runtime/doc/ui.txt index 9cbb84a19d..55eba484bc 100644 --- a/runtime/doc/ui.txt +++ b/runtime/doc/ui.txt @@ -795,13 +795,16 @@ must handle. "echo" |:echo| message "echomsg" |:echomsg| message "echoerr" |:echoerr| message + "list_cmd" List output for various commands (|:ls|, |:set|, …) "lua_error" Error in |:lua| code "lua_print" |print()| from |:lua| code "rpc_error" Error response from |rpcrequest()| + "number_prompt" Number input prompt (|inputlist()|, |z=|, …) "return_prompt" |press-enter| prompt after a multiple messages "quickfix" Quickfix navigation message "search_cmd" Entered search command "search_count" Search count message ("S" flag of 'shortmess') + "wildlist" 'wildmode' "list" message "wmsg" Warning ("search hit BOTTOM", |W10|, …) New kinds may be added in the future; clients should treat unknown kinds as the empty kind. |