diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-01 21:31:40 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-02 07:15:07 -0300 |
commit | 8a5a8dbf0f8dfec0b0494a0215891469753961a1 (patch) | |
tree | 1f22a425eb77401b524a93292bfc5eb2f7e61d06 /src/nvim/term.c | |
parent | 05f8d261fe305741ea99c6da2096d890b1005bf7 (diff) | |
download | rneovim-8a5a8dbf0f8dfec0b0494a0215891469753961a1.tar.gz rneovim-8a5a8dbf0f8dfec0b0494a0215891469753961a1.tar.bz2 rneovim-8a5a8dbf0f8dfec0b0494a0215891469753961a1.zip |
term: Remove most calls to settmode
Nvim now relies much less on setting terminal mode to cooked mode, remove most
calls to settmode, except for those that happen on startup or when suspending.
Eventually even those will be handled by the UI layer.
Diffstat (limited to 'src/nvim/term.c')
-rw-r--r-- | src/nvim/term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/term.c b/src/nvim/term.c index 47f7fa8af3..26f0785849 100644 --- a/src/nvim/term.c +++ b/src/nvim/term.c @@ -1865,7 +1865,7 @@ void term_write(char_u *s, size_t len) #ifdef UNIX if (p_wd) { // Unix is too fast, slow down a bit more - os_microdelay(p_wd, false); + os_microdelay(p_wd); } #endif } |