diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-02 07:51:18 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-12-02 07:51:18 -0300 |
commit | 888511862bc7b0850e2695e3edd46212dc78cc47 (patch) | |
tree | 572598e6b335008a71d6bc76faf6c5be7185d91c /src/nvim/ex_docmd.c | |
parent | 212cb13ca4526350ce761378505536fafb559eab (diff) | |
parent | 6436908ffe1906804a13073dd474e109e8be1d91 (diff) | |
download | rneovim-888511862bc7b0850e2695e3edd46212dc78cc47.tar.gz rneovim-888511862bc7b0850e2695e3edd46212dc78cc47.tar.bz2 rneovim-888511862bc7b0850e2695e3edd46212dc78cc47.zip |
Merge PR #1591 'Prepare to rewrite the terminal UI'
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 706aef0133..e180be4421 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -5107,7 +5107,6 @@ static void ex_highlight(exarg_T *eap) void not_exiting(void) { exiting = FALSE; - settmode(TMODE_RAW); } /* @@ -5994,7 +5993,6 @@ do_exedit ( { int n; int need_hide; - int exmode_was = exmode_active; /* * ":vi" command ends Ex mode. @@ -6014,8 +6012,6 @@ do_exedit ( eap->nextcmd = NULL; } - if (exmode_was != EXMODE_VIM) - settmode(TMODE_RAW); RedrawingDisabled = 0; no_wait_return = 0; need_wait_return = FALSE; @@ -6446,7 +6442,7 @@ static void ex_winsize(exarg_T *eap) p = arg; h = getdigits(&arg); if (*p != NUL && *arg == NUL) - set_shellsize(w, h, TRUE); + screen_resize(w, h, TRUE); else EMSG(_("E465: :winsize requires two number arguments")); } |