comparison src/os_unix.c @ 11834:0cfe4a07c2ad v8.0.0797

patch 8.0.0797: finished job in terminal window is not handled commit https://github.com/vim/vim/commit/d85f271bf8516dbd90be4d18f905f0abbfcd6db6 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 28 21:51:57 2017 +0200 patch 8.0.0797: finished job in terminal window is not handled Problem: Finished job in terminal window is not handled. Solution: Add the scrollback buffer. Use it to fill the buffer when the job has ended.
author Christian Brabandt <cb@256bit.org>
date Fri, 28 Jul 2017 22:00:04 +0200
parents bf8cfdcdbdd8
children 75a85e99f53e
comparison
equal deleted inserted replaced
11833:ffd6764d564e 11834:0cfe4a07c2ad
410 while (do_resize) 410 while (do_resize)
411 handle_resize(); 411 handle_resize();
412 412
413 #ifdef MESSAGE_QUEUE 413 #ifdef MESSAGE_QUEUE
414 parse_queued_messages(); 414 parse_queued_messages();
415 /* If input was put directly in typeahead buffer bail out here. */
416 if (typebuf_changed(tb_change_cnt))
417 return 0;
415 #endif 418 #endif
416 if (wtime < 0 && did_start_blocking) 419 if (wtime < 0 && did_start_blocking)
417 /* blocking and already waited for p_ut */ 420 /* blocking and already waited for p_ut */
418 wait_time = -1; 421 wait_time = -1;
419 else 422 else