summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-02-13 14:07:18 +0100
committerBram Moolenaar <Bram@vim.org>2018-02-13 14:07:18 +0100
commitab5e7c3deb40328e1c7d40534ed8cd9da47a92f8 (patch)
tree425494d1e472473472daa120e0f025403479c8e5
parent07ad816525da67cab3c0db21d1286d221dbc7477 (diff)
patch 8.0.1515: BufWinEnter event fired when opening hidden terminalv8.0.1515
Problem: BufWinEnter event fired when opening hidden terminal. Solution: Do not fire BufWinEnter when the terminal is midden and does not open a window. (Kenta Sato, closes #2636)
-rw-r--r--src/terminal.c9
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 3 deletions
diff --git a/src/terminal.c b/src/terminal.c
index 6b8d35394e..eca9f1bd86 100644
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -475,9 +475,12 @@ term_start(typval_T *argvar, jobopt_T *opt, int forceit)
channel_set_nonblock(term->tl_job->jv_channel, PART_IN);
#ifdef FEAT_AUTOCMD
- ++curbuf->b_locked;
- apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
- --curbuf->b_locked;
+ if (!opt->jo_hidden)
+ {
+ ++curbuf->b_locked;
+ apply_autocmds(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf);
+ --curbuf->b_locked;
+ }
#endif
if (old_curbuf != NULL)
diff --git a/src/version.c b/src/version.c
index adedd8541e..52479de74c 100644
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1515,
+/**/
1514,
/**/
1513,