diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-04 00:14:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-04 00:14:49 +0200 |
commit | 16b1e8f9c070ad853c6c63b43591e297bf512662 (patch) | |
tree | 2246efdc9b3ca66346d2182ffa3866914fbee999 /src/nvim/eval.c | |
parent | dc4fa0b24dd65a72f66e853e9f5eb42a2e1973ff (diff) | |
parent | 49733df939b7c47739069581d5d2ae9d891eb4a8 (diff) | |
download | rneovim-16b1e8f9c070ad853c6c63b43591e297bf512662.tar.gz rneovim-16b1e8f9c070ad853c6c63b43591e297bf512662.tar.bz2 rneovim-16b1e8f9c070ad853c6c63b43591e297bf512662.zip |
Merge #9338 from janlazo/vim-8.1.0569
vim-patch:8.1.{569,571}
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 1640729c94..a4606f76f3 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -8331,6 +8331,8 @@ static void f_execute(typval_T *argvars, typval_T *rettv, FunPtr fptr) const bool save_emsg_noredir = emsg_noredir; const bool save_redir_off = redir_off; garray_T *const save_capture_ga = capture_ga; + const int save_msg_col = msg_col; + bool echo_output = false; if (check_secure()) { return; @@ -8343,6 +8345,9 @@ static void f_execute(typval_T *argvars, typval_T *rettv, FunPtr fptr) if (s == NULL) { return; } + if (*s == NUL) { + echo_output = true; + } if (strncmp(s, "silent", 6) == 0) { msg_silent++; } @@ -8358,6 +8363,9 @@ static void f_execute(typval_T *argvars, typval_T *rettv, FunPtr fptr) ga_init(&capture_local, (int)sizeof(char), 80); capture_ga = &capture_local; redir_off = false; + if (!echo_output) { + msg_col = 0; // prevent leading spaces + } if (argvars[0].v_type != VAR_LIST) { do_cmdline_cmd(tv_get_string(&argvars[0])); @@ -8376,6 +8384,16 @@ static void f_execute(typval_T *argvars, typval_T *rettv, FunPtr fptr) emsg_silent = save_emsg_silent; emsg_noredir = save_emsg_noredir; redir_off = save_redir_off; + // "silent reg" or "silent echo x" leaves msg_col somewhere in the line. + if (echo_output) { + // When not working silently: put it in column zero. A following + // "echon" will overwrite the message, unavoidably. + msg_col = 0; + } else { + // When working silently: Put it back where it was, since nothing + // should have been written. + msg_col = save_msg_col; + } ga_append(capture_ga, NUL); rettv->v_type = VAR_STRING; |