comparison src/terminal.c @ 13624:429f0eb87d6f v8.0.1684

patch 8.0.1684: ml_get errors when using terminal window for shell command commit https://github.com/vim/vim/commit/07b46af645fa7a2b95afec3f3d87c91942d9cbd0 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 10 14:56:18 2018 +0200 patch 8.0.1684: ml_get errors when using terminal window for shell command Problem: ml_get errors when using terminal window for shell command. (Blay263) Solution: Do not change the size of the current window.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Apr 2018 15:00:13 +0200
parents b6998c6374e1
children ab89131d30e0
comparison
equal deleted inserted replaced
13623:7447d2dba85b 13624:429f0eb87d6f
223 { 223 {
224 /* Use the whole screen for the system command. However, it will start 224 /* Use the whole screen for the system command. However, it will start
225 * at the command line and scroll up as needed, using tl_toprow. */ 225 * at the command line and scroll up as needed, using tl_toprow. */
226 term->tl_rows = Rows; 226 term->tl_rows = Rows;
227 term->tl_cols = Columns; 227 term->tl_cols = Columns;
228 } 228 return;
229 else 229 }
230 #endif 230 #endif
231 if (*curwin->w_p_tms != NUL) 231 if (*curwin->w_p_tms != NUL)
232 { 232 {
233 char_u *p = vim_strchr(curwin->w_p_tms, 'x') + 1; 233 char_u *p = vim_strchr(curwin->w_p_tms, 'x') + 1;
234 234