diff options
author | Gregory Anders <8965202+gpanders@users.noreply.github.com> | 2023-11-30 16:17:38 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-30 16:17:38 -0600 |
commit | b32b5b2711ed338f4944c983a247f80c3163f87c (patch) | |
tree | e8f5f8d2dc43b15c54e9b28cdb25d8c8b07f0ecd /runtime/lua | |
parent | 5e1ff4302f2b167d4f73c50c47f7ace97f442eca (diff) | |
download | rneovim-b32b5b2711ed338f4944c983a247f80c3163f87c.tar.gz rneovim-b32b5b2711ed338f4944c983a247f80c3163f87c.tar.bz2 rneovim-b32b5b2711ed338f4944c983a247f80c3163f87c.zip |
fix: use BEL to terminate OSC 11 request (#26335)
Diffstat (limited to 'runtime/lua')
-rw-r--r-- | runtime/lua/vim/_defaults.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_defaults.lua b/runtime/lua/vim/_defaults.lua index cc872dea83..c3bb36fc36 100644 --- a/runtime/lua/vim/_defaults.lua +++ b/runtime/lua/vim/_defaults.lua @@ -297,7 +297,7 @@ do end, }) - io.stdout:write('\027]11;?\027\\') + io.stdout:write('\027]11;?\007') timer:start(1000, 0, function() -- No response received. Delete the autocommand |