comparison src/highlight.c @ 19265:ce8c47ed54e5 v8.2.0191

patch 8.2.0191: cannot put a terminal in a popup window Commit: https://github.com/vim/vim/commit/219c7d063823498be22aae46dd024d77b5fb2a58 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 1 21:57:29 2020 +0100 patch 8.2.0191: cannot put a terminal in a popup window Problem: Cannot put a terminal in a popup window. Solution: Allow opening a terminal in a popup window. It will always have keyboard focus until closed.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Feb 2020 22:00:04 +0100
parents e7b4fff348dd
children fe90a71a3fed
comparison
equal deleted inserted replaced
19264:489e4c8101ba 19265:ce8c47ed54e5
3132 return sgp->sg_gui; 3132 return sgp->sg_gui;
3133 } 3133 }
3134 #endif 3134 #endif
3135 3135
3136 #if (defined(MSWIN) \ 3136 #if (defined(MSWIN) \
3137 && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) \ 3137 && (!defined(FEAT_GUI_MSWIN) || defined(VIMDLL)) \
3138 && defined(FEAT_TERMGUICOLORS)) || defined(PROTO) 3138 && defined(FEAT_TERMGUICOLORS)) \
3139 || defined(FEAT_TERMINAL) || defined(PROTO)
3139 void 3140 void
3140 syn_id2cterm_bg(int hl_id, int *fgp, int *bgp) 3141 syn_id2cterm_bg(int hl_id, int *fgp, int *bgp)
3141 { 3142 {
3142 hl_group_T *sgp; 3143 hl_group_T *sgp;
3143 3144