From a2a8d693612cadc500ea4d7708738c3a214c2a3a Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 9 Apr 2025 02:08:22 +0200 Subject: [PATCH] fix: disable OSC 52 --- lua/core/globals.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lua/core/globals.lua b/lua/core/globals.lua index fe69401..8f582f3 100644 --- a/lua/core/globals.lua +++ b/lua/core/globals.lua @@ -12,3 +12,7 @@ vim.g.netrw_sort_sequence = '[\\/]\\s*,*' vim.g.netrw_special_syntax = 1 vim.g.netrw_timefmt = '%d-%m-%Y %H:%M' vim.g.c_syntax_for_h = 1 + +local termfeatures = vim.g.termfeatures or {} +termfeatures.osc52 = false +vim.g.termfeatures = termfeatures