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/ex_cmds.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/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 6ffd255dc7..9cfcecf8ad 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -1175,7 +1175,7 @@ static void do_filter( // to read the error messages. Otherwise errors are ignored, so you can see // the error messages from the command that appear on stdout; use 'u' to fix // the text. - // Pass on the kShellDoOut flag when the output is being redirected. + // Pass on the kShellOptDoOut flag when the output is being redirected. if (call_shell( cmd_buf, kShellOptFilter | shell_flags, |