diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2018-02-07 10:23:19 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2018-02-10 22:28:12 +0100 |
commit | 60ce7d9e0a0606e20a17f90d78e9d8319114273b (patch) | |
tree | 54ceededd83da28ca5fd8eccca33a368172ffbe2 /src/nvim/os/shell.c | |
parent | a6052c7307414045fbe2f55cd0c6a5017eb9f68e (diff) | |
download | rneovim-60ce7d9e0a0606e20a17f90d78e9d8319114273b.tar.gz rneovim-60ce7d9e0a0606e20a17f90d78e9d8319114273b.tar.bz2 rneovim-60ce7d9e0a0606e20a17f90d78e9d8319114273b.zip |
shell: support bell
Diffstat (limited to 'src/nvim/os/shell.c')
-rw-r--r-- | src/nvim/os/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index 5b3cb64a4d..166e06b1a4 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -455,7 +455,7 @@ static void out_data_append_to_screen(char *output, size_t remaining, { char *p = output, *end = output + remaining; while (p < end) { - if (*p == '\n' || *p == '\r' || *p == TAB) { + if (*p == '\n' || *p == '\r' || *p == TAB || *p == BELL) { msg_putchar_attr((uint8_t)(*p), 0); p++; } else { |