comparison src/vim.h @ 13470:6faef782f50b v8.0.1609

patch 8.0.1609: shell commands in the GUI use a dumb terminal commit https://github.com/vim/vim/commit/135682517bc378cfdb63fe3a6e3553935f69f6ce Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 16 20:46:58 2018 +0100 patch 8.0.1609: shell commands in the GUI use a dumb terminal Problem: Shell commands in the GUI use a dumb terminal. Solution: Add the "!" flag to 'guioptions' to execute system commands in a special terminal window. Only for Unix now.
author Christian Brabandt <cb@256bit.org>
date Fri, 16 Mar 2018 21:00:08 +0100
parents b18e5f37c44b
children 1fd0f8392946
comparison
equal deleted inserted replaced
13469:e9121e612cbc 13470:6faef782f50b
2541 2541
2542 /* Replacement for nchar used by nv_replace(). */ 2542 /* Replacement for nchar used by nv_replace(). */
2543 #define REPLACE_CR_NCHAR -1 2543 #define REPLACE_CR_NCHAR -1
2544 #define REPLACE_NL_NCHAR -2 2544 #define REPLACE_NL_NCHAR -2
2545 2545
2546 /* flags for term_start() */
2547 #define TERM_START_NOJOB 1
2548 #define TERM_START_FORCEIT 2
2549 #define TERM_START_SYSTEM 4
2550
2546 #endif /* VIM__H */ 2551 #endif /* VIM__H */