diff src/normal.c @ 31588:e94571ac4134 v9.0.1126

patch 9.0.1126: bracketed paste can be enabled when it is not recognized Commit: https://github.com/vim/vim/commit/fc966c19f85afc6b856a06c00a93c4fe96280d31 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 1 18:04:33 2023 +0000 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 01 Jan 2023 19:15:03 +0100
parents bb797331e21b
children 24d9c23bf665
line wrap: on
line diff
--- 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();
 	}