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/terminal.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/terminal.c')
-rw-r--r-- | src/nvim/terminal.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c index c5beec5a34..276b47536f 100644 --- a/src/nvim/terminal.c +++ b/src/nvim/terminal.c @@ -461,6 +461,10 @@ static int terminal_execute(VimState *state, int key) } break; + case K_COMMAND: + do_cmdline(NULL, getcmdkeycmd, NULL, 0); + break; + case Ctrl_N: if (s->got_bsl) { return 0; |