Do send bracketed paste inside midnight commander

It can handle it fine (well, it simply strips the control sequences..).
This commit is contained in:
Johannes Altmanninger 2024-10-12 10:54:09 +02:00
parent 0d9dfb307b
commit 97581ed20f

View File

@ -474,14 +474,11 @@ fn test_parse_version() {
}
pub fn terminal_protocols_enable_ifn() {
if IN_MIDNIGHT_COMMANDER.load() {
return;
}
if TERMINAL_PROTOCOLS.load(Ordering::Relaxed) {
return;
}
TERMINAL_PROTOCOLS.store(true, Ordering::Release);
let sequences = if IN_WEZTERM.load() {
let sequences = if IN_WEZTERM.load() || IN_MIDNIGHT_COMMANDER.load() {
"\x1b[?2004h"
} else if IN_ITERM_PRE_CSI_U.load() {
concat!("\x1b[?2004h", "\x1b[>4;1m", "\x1b[>5u", "\x1b=",)