Skip to content

Commit 2e6638d

Browse files
committed
patch 8.2.0214: a popup window with a terminal can be made hidden
Problem: A popup window with a terminal can be made hidden. Solution: Disallow hiding a terminal popup.
1 parent 7077892 commit 2e6638d

4 files changed

Lines changed: 30 additions & 2 deletions

File tree

src/popupwin.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2371,6 +2371,10 @@ f_popup_close(typval_T *argvars, typval_T *rettv UNUSED)
23712371
void
23722372
popup_hide(win_T *wp)
23732373
{
2374+
#ifdef FEAT_TERMINAL
2375+
if (error_if_term_popup_window())
2376+
return;
2377+
#endif
23742378
if ((wp->w_popup_flags & POPF_HIDDEN) == 0)
23752379
{
23762380
wp->w_popup_flags |= POPF_HIDDEN;
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
|3+0&#ffffff0| @12|╔+0&#a8a8a8255|═@44|╗| +0&#ffffff0@13
2+
|4| @12|║+0&#a8a8a8255|s|o|m|e| |t|e|x|t| @35|║| +0&#ffffff0@13
3+
|5| @12|║+0&#a8a8a8255|t|o| |e+0&#ffff4012|d|i|t| +0&#a8a8a8255@37|║| +0&#ffffff0@13
4+
|6| @12|║+0&#a8a8a8255|i|n| |a| |p|o|p|u|p| |w|i|n|d|o|w| @27|║| +0&#ffffff0@13
5+
|7| @12|║+0&#a8a8a8255|~+0#4040ff13&| @43|║+0#0000000&| +0&#ffffff0@13
6+
|8| @12|║+0&#a8a8a8255|~+0#4040ff13&| @43|║+0#0000000&| +0&#ffffff0@13
7+
|9| @12|║+0&#a8a8a8255|~+0#4040ff13&| @43|║+0#0000000&| +0&#ffffff0@13
8+
|1|0| @11|║+0&#a8a8a8255|/|e|d|i|t| @21|2|,|4| @10|A|l@1| |║| +0&#ffffff0@13
9+
|1@1| @11|╚+0&#a8a8a8255|═@44|⇲| +0&#ffffff0@13
10+
|1|2| @72
11+
|1|3| @72
12+
|E+0#ffffff16#e000002|r@1|o|r| |d|e|t|e|c|t|e|d| |w|h|i|l|e| |p|r|o|c|e|s@1|i|n|g| |f|u|n|c|t|i|o|n| |H|i|d|e|P|o|p|u|p|:| +0#0000000#ffffff0@23
13+
|l+0#af5f00255&|i|n|e| @3|1|:| +0#0000000&@64
14+
|E+0#ffffff16#e000002|8|6|3|:| |N|o|t| |a|l@1|o|w|e|d| |f|o|r| |a| |t|e|r|m|i|n|a|l| |i|n| |a| |p|o|p|u|p| |w|i|n|d|o|w| +0#0000000#ffffff0@24
15+
|P+0#00e0003&|r|e|s@1| |E|N|T|E|R| |o|r| |t|y|p|e| |c|o|m@1|a|n|d| |t|o| |c|o|n|t|i|n|u|e> +0#0000000&@35

src/testdir/test_terminal.vim

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2337,12 +2337,15 @@ func Test_terminal_in_popup()
23372337
\ 'hi PopTerm ctermbg=grey',
23382338
\ 'func OpenTerm(setColor)',
23392339
\ " let buf = term_start('" .. cmd .. " Xtext', #{hidden: 1, term_finish: 'close'})",
2340-
\ ' let winid = popup_create(buf, #{minwidth: 45, minheight: 7, border: [], drag: 1, resize: 1})',
2340+
\ ' let s:winid = popup_create(buf, #{minwidth: 45, minheight: 7, border: [], drag: 1, resize: 1})',
23412341
\ ' if a:setColor',
2342-
\ ' call win_execute(winid, "set wincolor=PopTerm")',
2342+
\ ' call win_execute(s:winid, "set wincolor=PopTerm")',
23432343
\ ' endif',
23442344
\ 'endfunc',
23452345
\ 'call OpenTerm(0)',
2346+
\ 'func HidePopup()',
2347+
\ ' call popup_hide(s:winid)',
2348+
\ 'endfunc',
23462349
\ ]
23472350
call writefile(lines, 'XtermPopup')
23482351
let buf = RunVimInTerminal('-S XtermPopup', #{rows: 15})
@@ -2356,6 +2359,10 @@ func Test_terminal_in_popup()
23562359
call term_sendkeys(buf, "/edit\<CR>")
23572360
call VerifyScreenDump(buf, 'Test_terminal_popup_3', {})
23582361

2362+
call term_sendkeys(buf, "\<C-W>:call HidePopup()\<CR>")
2363+
call VerifyScreenDump(buf, 'Test_terminal_popup_4', {})
2364+
call term_sendkeys(buf, "\<CR>")
2365+
23592366
call term_sendkeys(buf, ":q\<CR>")
23602367
call term_wait(buf, 100) " wait for terminal to vanish
23612368

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,8 @@ static char *(features[]) =
742742

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
214,
745747
/**/
746748
213,
747749
/**/

0 commit comments

Comments
 (0)