0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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.
This commit is contained in:
Bram Moolenaar
2017-07-26 23:11:01 +02:00
parent 4cc93dc85a
commit 293424c199
2 changed files with 5 additions and 3 deletions

View File

@@ -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)
{