0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.5056: the channel log only contains some of the raw terminal output

Problem:    The channel log only contains some of the raw terminal output.
Solution:   Add the "o" flag to log all terminal output.  Use it for "--log".
This commit is contained in:
Bram Moolenaar
2022-06-04 22:15:54 +01:00
parent 327e6dd822
commit 1d97db3d98
10 changed files with 58 additions and 63 deletions

View File

@@ -152,7 +152,7 @@ main
# endif
# ifdef FEAT_JOB_CHANNEL
if (STRICMP(argv[i], "--log") == 0)
ch_logfile((char_u *)(argv[i + 1]), (char_u *)"a");
ch_logfile((char_u *)(argv[i + 1]), (char_u *)"ao");
# endif
}
#endif