diff options
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r-- | src/nvim/os_unix.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c index 5d8b4ad26a..8e4569033a 100644 --- a/src/nvim/os_unix.c +++ b/src/nvim/os_unix.c @@ -232,15 +232,7 @@ void mch_exit(int r) { exiting = TRUE; - { - ui_builtin_stop(); - - // Cursor may have been switched off without calling starttermcap() - // when doing "vim -u vimrc" and vimrc contains ":q". */ - if (full_screen) { - ui_cursor_on(); - } - } + ui_builtin_stop(); ui_flush(); ml_close_all(TRUE); /* remove all memfiles */ |