diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-01-12 08:32:28 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-02-05 22:57:43 +0100 |
commit | 2d99b81ab5b7481e20c03376f0f40924daff491f (patch) | |
tree | b681908c6317807f75ee701e704b221b0eda71b0 /src/nvim/quickfix.c | |
parent | 0851057a8deaa1197bd0af22babb62c1146d836c (diff) | |
download | rneovim-2d99b81ab5b7481e20c03376f0f40924daff491f.tar.gz rneovim-2d99b81ab5b7481e20c03376f0f40924daff491f.tar.bz2 rneovim-2d99b81ab5b7481e20c03376f0f40924daff491f.zip |
shell: use msg_outtrans_len_attr for :!cmd
fixes #7830 and #7788
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 63252df3dc..ea2d13761c 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3148,10 +3148,9 @@ void ex_make(exarg_T *eap) } msg_start(); MSG_PUTS(":!"); - msg_outtrans((char_u *) cmd); // show what we are doing + msg_outtrans((char_u *)cmd); // show what we are doing - // let the shell know if we are redirecting output or not - do_shell((char_u *) cmd, *p_sp != NUL ? kShellOptDoOut : 0); + do_shell((char_u *)cmd, 0); res = qf_init(wp, fname, (eap->cmdidx != CMD_make |