From fc966c19f85afc6b856a06c00a93c4fe96280d31 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 1 Jan 2023 18:04:33 +0000 Subject: patch 9.0.1126: bracketed paste can be enabled when it is not recognized Problem: Bracketed paste can be enabled when pasted text is not recognized. Solution: Output t_BE only when t_PS and t_PE are set. --- src/normal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/normal.c') diff --git a/src/normal.c b/src/normal.c index 4df6b6a50..cc4e2467f 100644 --- a/src/normal.c +++ b/src/normal.c @@ -454,7 +454,7 @@ normal_cmd_get_more_chars( MAY_WANT_TO_LOG_THIS; // Re-enable bracketed paste mode and modifyOtherKeys - out_str(T_BE); + out_str_t_BE(); out_str_t_TI(); } -- cgit v1.2.1