diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-03-24 17:45:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-24 17:45:48 +0100 |
commit | 6a7c904648827ec145fe02b314768453e2bbf4fe (patch) | |
tree | 6b031436f0a2027eaea0f77f1ebbd1fb1751672a /src/nvim/ex_docmd.c | |
parent | 1b61167373420440535cb975804fd9e728025011 (diff) | |
parent | d407a48665d8f8e1e42eb1060ea245d979419605 (diff) | |
download | rneovim-6a7c904648827ec145fe02b314768453e2bbf4fe.tar.gz rneovim-6a7c904648827ec145fe02b314768453e2bbf4fe.tar.bz2 rneovim-6a7c904648827ec145fe02b314768453e2bbf4fe.zip |
Merge #4419 'implement <Cmd> key'
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index eb6d7ad815..99495aaa61 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -8156,6 +8156,10 @@ static void ex_startinsert(exarg_T *eap) restart_edit = 'i'; curwin->w_curswant = 0; /* avoid MAXCOL */ } + + if (VIsual_active) { + showmode(); + } } /* |