diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-16 11:12:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-16 11:12:42 -0600 |
commit | b4b7ca2d548a1cc1a2cd8c48e5c93478811bd275 (patch) | |
tree | c129a344b53a87d8e31f31ec50da7905158e1495 /runtime/lua/vim/_meta/api.lua | |
parent | dc3f84bf4f94d0389f74991c555c3e76c2ea67f6 (diff) | |
download | rneovim-b4b7ca2d548a1cc1a2cd8c48e5c93478811bd275.tar.gz rneovim-b4b7ca2d548a1cc1a2cd8c48e5c93478811bd275.tar.bz2 rneovim-b4b7ca2d548a1cc1a2cd8c48e5c93478811bd275.zip |
feat(tui): support DCS responses in TermResponse event (#26061)
Diffstat (limited to 'runtime/lua/vim/_meta/api.lua')
-rw-r--r-- | runtime/lua/vim/_meta/api.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/lua/vim/_meta/api.lua b/runtime/lua/vim/_meta/api.lua index 2142a429a2..0c8979054f 100644 --- a/runtime/lua/vim/_meta/api.lua +++ b/runtime/lua/vim/_meta/api.lua @@ -2065,11 +2065,12 @@ function vim.api.nvim_ui_set_focus(gained) end --- @param value any function vim.api.nvim_ui_set_option(name, value) end ---- Tells Nvim when a terminal event has occurred. +--- Tells Nvim when a terminal event has occurred --- The following terminal events are supported: --- ---- • "osc_response": The terminal sent a OSC response sequence to Nvim. The ---- payload is the received OSC sequence. +--- • "termresponse": The terminal sent an OSC or DCS response sequence to +--- Nvim. The payload is the received response. Sets `v:termresponse` and +--- fires `TermResponse`. --- --- --- @param event string Event name |