diff options
author | devbhan singh <devbhan25@gmail.com> | 2021-01-20 14:55:52 +0530 |
---|---|---|
committer | bfredl <bjorn.linse@gmail.com> | 2022-05-21 23:22:23 +0200 |
commit | 646e1c3a3adf89928959c3a0d6a1bd7c55ca932f (patch) | |
tree | b160c396d91392929ee4cd4b51aa42ec50e5d1f2 /src/nvim/api | |
parent | 1f1a65a9e4c602cd80458b213c28eadbdb5b1de1 (diff) | |
download | rneovim-646e1c3a3adf89928959c3a0d6a1bd7c55ca932f.tar.gz rneovim-646e1c3a3adf89928959c3a0d6a1bd7c55ca932f.tar.bz2 rneovim-646e1c3a3adf89928959c3a0d6a1bd7c55ca932f.zip |
feat(ui): clear message history explicitly with msg_history_clear event
Diffstat (limited to 'src/nvim/api')
-rw-r--r-- | src/nvim/api/ui_events.in.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/api/ui_events.in.h b/src/nvim/api/ui_events.in.h index 63aaaae38a..0030f9edf7 100644 --- a/src/nvim/api/ui_events.in.h +++ b/src/nvim/api/ui_events.in.h @@ -174,4 +174,6 @@ void msg_ruler(Array content) FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY; void msg_history_show(Array entries) FUNC_API_SINCE(6) FUNC_API_REMOTE_ONLY; +void msg_history_clear(void) + FUNC_API_SINCE(10) FUNC_API_REMOTE_ONLY; #endif // NVIM_API_UI_EVENTS_IN_H |