comparison src/structs.h @ 11713:2ec27561dd76 v8.0.0739

patch 8.0.0739: terminal resizing doesn't work well. commit https://github.com/vim/vim/commit/58556cd0e592cba75bf60310d822a20e41f6b02e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 20 23:04:46 2017 +0200 patch 8.0.0739: terminal resizing doesn't work well. Problem: Terminal resizing doesn't work well. Solution: Resize the terminal to the Vim window and the other way around. Avoid mapping typed keys. Set the environment properly.
author Christian Brabandt <cb@256bit.org>
date Thu, 20 Jul 2017 23:15:03 +0200
parents 16dab1cd56f2
children 1922710ee8fa
comparison
equal deleted inserted replaced
11712:1347bc230b5f 11713:2ec27561dd76
1730 int jo_block_write; /* for testing only */ 1730 int jo_block_write; /* for testing only */
1731 int jo_part; 1731 int jo_part;
1732 int jo_id; 1732 int jo_id;
1733 char_u jo_soe_buf[NUMBUFLEN]; 1733 char_u jo_soe_buf[NUMBUFLEN];
1734 char_u *jo_stoponexit; 1734 char_u *jo_stoponexit;
1735
1736 #ifdef FEAT_TERMINAL
1737 /* when non-zero run the job in a terminal window of this size */
1738 int jo_term_rows;
1739 int jo_term_cols;
1740 #endif
1735 } jobopt_T; 1741 } jobopt_T;
1736 1742
1737 1743
1738 /* structure used for explicit stack while garbage collecting hash tables */ 1744 /* structure used for explicit stack while garbage collecting hash tables */
1739 typedef struct ht_stack_S 1745 typedef struct ht_stack_S