diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-25 16:49:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-25 16:49:53 -0800 |
commit | cbcb50dcc958131b95cb12846dc567dc4fd32b8b (patch) | |
tree | 473ad56db23ce555a603a4dab543e167f0f5e574 | |
parent | a75c289eb8133b418ea0f7bca99f38e1e9e1eca0 (diff) | |
download | rneovim-cbcb50dcc958131b95cb12846dc567dc4fd32b8b.tar.gz rneovim-cbcb50dcc958131b95cb12846dc567dc4fd32b8b.tar.bz2 rneovim-cbcb50dcc958131b95cb12846dc567dc4fd32b8b.zip |
shell: "..." instead of "[...]" #11760
0c1be45ea0b7 changed pulse logic to output "[...]" instead of nothing.
But that doesn't align with the "..." pulse which may follow it.
ref #11130
-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 f4377b1457..d1de18d5b3 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -423,7 +423,7 @@ static bool out_data_decide_throttle(size_t size) pulse_msg[1] = (tick > 1) ? '.' : ' '; pulse_msg[2] = (tick > 2) ? '.' : ' '; if (visit == 1) { - msg_puts("[...]\n"); + msg_puts("...\n"); } msg_putchar('\r'); // put cursor at start of line msg_puts(pulse_msg); |