comparison src/structs.h @ 10404:65e0537a4560 v8.0.0096

commit https://github.com/vim/vim/commit/2cab0e191055a8145ccd46cd52869fbb9798b971 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 24 15:09:07 2016 +0100 patch 8.0.0096 Problem: When the input or output is not a tty Vim appears to hang. Solution: Add the --ttyfail argument. Also add the "ttyin" and "ttyout" features to be able to check in Vim script.
author Christian Brabandt <cb@256bit.org>
date Thu, 24 Nov 2016 15:15:04 +0100
parents d3f0946b4a80
children acfc83aca8ee
comparison
equal deleted inserted replaced
10403:491b6a166e42 10404:65e0537a4560
3223 #ifdef FEAT_QUICKFIX 3223 #ifdef FEAT_QUICKFIX
3224 char_u *use_ef; /* 'errorfile' from -q argument */ 3224 char_u *use_ef; /* 'errorfile' from -q argument */
3225 #endif 3225 #endif
3226 3226
3227 int want_full_screen; 3227 int want_full_screen;
3228 int stdout_isatty; /* is stdout a terminal? */
3229 int not_a_term; /* no warning for missing term? */ 3228 int not_a_term; /* no warning for missing term? */
3229 int tty_fail; /* exit if not a tty */
3230 char_u *term; /* specified terminal name */ 3230 char_u *term; /* specified terminal name */
3231 #ifdef FEAT_CRYPT 3231 #ifdef FEAT_CRYPT
3232 int ask_for_key; /* -x argument */ 3232 int ask_for_key; /* -x argument */
3233 #endif 3233 #endif
3234 int no_swap_file; /* "-n" argument used */ 3234 int no_swap_file; /* "-n" argument used */