diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-13 12:06:05 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-16 23:17:39 -0300 |
commit | 9a2dd7c4987679106fba24fb7702a11aba6b6ccf (patch) | |
tree | ffd40b74d975246f4c9a44cba9f302033f7572dd /src/nvim/os_unix.c | |
parent | e0e41b30c61922e099a067ac5c137e745699a1aa (diff) | |
download | rneovim-9a2dd7c4987679106fba24fb7702a11aba6b6ccf.tar.gz rneovim-9a2dd7c4987679106fba24fb7702a11aba6b6ccf.tar.bz2 rneovim-9a2dd7c4987679106fba24fb7702a11aba6b6ccf.zip |
ui: Rewrite the builtin terminal UI
Now all terminal-handling code was moved to src/nvim/tui, which implements a
new terminal UI based on libtermkey and unibilium
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 094d3fa1ba..3bf67c2290 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -409,6 +409,8 @@ void mch_exit(int r) if (swapping_screen() && !newline_on_exit) exit_scroll(); + ui_builtin_stop(); + /* * A newline is only required after a message in the alternate screen. * This is set to TRUE by wait_return(). |