diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-12-10 02:18:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-10 02:18:15 +0100 |
commit | 7c513d646d87eb3e4ed4917d5a3a7b9163371fae (patch) | |
tree | badf3d0cad34dc28ecd1d87b9f7b38843677021d /src/nvim/main.c | |
parent | 5082af415f762e5f5974214e32deff883141bfc2 (diff) | |
parent | 4abe9afbf67cec620fde9e47cb3df92f60e1cca9 (diff) | |
download | rneovim-7c513d646d87eb3e4ed4917d5a3a7b9163371fae.tar.gz rneovim-7c513d646d87eb3e4ed4917d5a3a7b9163371fae.tar.bz2 rneovim-7c513d646d87eb3e4ed4917d5a3a7b9163371fae.zip |
Merge #5396 from justinmk/tui-throttle
throttle shell output to maintain responsiveness
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 9b9976ac0a..12227565f3 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -534,7 +534,7 @@ int main(int argc, char **argv) } TIME_MSG("before starting main loop"); - ILOG("Starting Neovim main loop."); + ILOG("starting main loop"); /* * Call the main command loop. This never returns. |