neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 400b7842a98355bc3fcf2ecfaeda8ccf259d917a
parent 9b4b23493d6976613fc3e8b561c34bb4b808399c
Author: Gregory Anders <8965202+gpanders@users.noreply.github.com>
Date:   Wed, 29 Nov 2023 09:49:44 -0600

fix(termcap): escape escapes in passthrough sequence (#26301)

When using the tmux passthrough sequence any escape characters in the
inner sequence must be escaped by adding another escape character.
Diffstat:
Mruntime/lua/vim/termcap.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/termcap.lua b/runtime/lua/vim/termcap.lua @@ -53,7 +53,7 @@ function M.query(caps, cb) -- If running in tmux, wrap with the passthrough sequence if os.getenv('TMUX') then - query = string.format('\027Ptmux;\027%s\027\\', query) + query = string.format('\027Ptmux;%s\027\\', query:gsub('\027', '\027\027')) end io.stdout:write(query)