summaryrefslogtreecommitdiff
path: root/src/normal.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-05 14:27:24 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-05 14:27:24 +0200
commit86394aa9720c5e087d85831e42d44e042987fbc0 (patch)
tree853c38b28ea57594f1daec276c9fcc2b94c08bf1 /src/normal.c
parentcf8aa6448b3520905bea528ea8ad6533cbef288d (diff)
downloadvim-git-86394aa9720c5e087d85831e42d44e042987fbc0.tar.gz
patch 8.2.1595: cannot easily see what Vim sends to the terminalv8.2.1595
Problem: Cannot easily see what Vim sends to the terminal. Solution: Write output to the channel log if it contains terminal control sequences. Avoid warnings for tputs() argument.
Diffstat (limited to 'src/normal.c')
-rw-r--r--src/normal.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/normal.c b/src/normal.c
index 966c1a1fa..673cac83e 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -897,6 +897,9 @@ getcount:
#endif
if ((State & INSERT) && !p_ek)
{
+#ifdef FEAT_JOB_CHANNEL
+ ch_log_output = TRUE;
+#endif
// Disable bracketed paste and modifyOtherKeys here, we won't
// recognize the escape sequences with 'esckeys' off.
out_str(T_BD);
@@ -907,6 +910,9 @@ getcount:
if ((State & INSERT) && !p_ek)
{
+#ifdef FEAT_JOB_CHANNEL
+ ch_log_output = TRUE;
+#endif
// Re-enable bracketed paste mode and modifyOtherKeys
out_str(T_BE);
out_str(T_CTI);