# HG changeset patch # User Christian Brabandt # Date 1501103704 -7200 # Node ID 2e7e77e28063641d3bafa02b20ca2ebb86749b67 # Parent 393a5d6b794ab9f32e72777efbe8e9fb5a0fbb33 patch 8.0.0779: :term without an argument uses empty buffer name commit https://github.com/vim/vim/commit/293424c199615b774365db9b412209b102cdfe20 Author: Bram Moolenaar Date: Wed Jul 26 23:11:01 2017 +0200 patch 8.0.0779: :term without an argument uses empty buffer name Problem: :term without an argument uses empty buffer name but runs the snell. Solution: Change the command to the shell earlier. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -199,6 +199,9 @@ ex_terminal(exarg_T *eap) term->tl_next = first_term; first_term = term; + if (cmd == NULL || *cmd == NUL) + cmd = p_sh; + if (buflist_findname(cmd) == NULL) curbuf->b_ffname = vim_strsave(cmd); else @@ -227,9 +230,6 @@ ex_terminal(exarg_T *eap) set_term_and_win_size(term); - if (cmd == NULL || *cmd == NUL) - cmd = p_sh; - /* System dependent: setup the vterm and start the job in it. */ if (term_and_job_init(term, term->tl_rows, term->tl_cols, cmd) == OK) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 779, +/**/ 778, /**/ 777,