diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2014-12-23 15:03:08 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-12-23 15:03:08 -0500 |
commit | 4f6bb8a9a997aacbe9f9f1ca83e7e4c502bdc03c (patch) | |
tree | 20651663650de0bf7f112c000015622e191268e0 /src/nvim/ex_getln.c | |
parent | 44fabac4e0fd5567691d1e7c69da8db156936996 (diff) | |
parent | 1f73d7cb85a48a650a00b18a7f987954209a4d52 (diff) | |
download | rneovim-4f6bb8a9a997aacbe9f9f1ca83e7e4c502bdc03c.tar.gz rneovim-4f6bb8a9a997aacbe9f9f1ca83e7e4c502bdc03c.tar.bz2 rneovim-4f6bb8a9a997aacbe9f9f1ca83e7e4c502bdc03c.zip |
Merge pull request #1727 from fwalch/small-patches
vim-patch: Multiple small patches
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index a19cb36d12..3ce8263457 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -627,11 +627,13 @@ getcmdline ( } if (c == cedit_key || c == K_CMDWIN) { - /* - * Open a window to edit the command line (and history). - */ - c = ex_window(); - some_key_typed = TRUE; + if (ex_normal_busy == 0 && got_int == FALSE) { + /* + * Open a window to edit the command line (and history). + */ + c = ex_window(); + some_key_typed = TRUE; + } } else c = do_digraph(c); |