aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-03 22:53:37 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-04-04 05:46:45 +0800
commit9955209afbedd00907a558a6d7d98a643c55455a (patch)
tree050f1f7552967e81a8a1e47a747e95197f26ab4e /src/nvim/getchar.c
parentd73bf3138a802bb6c1c654cd913d4e91932287f8 (diff)
downloadrneovim-9955209afbedd00907a558a6d7d98a643c55455a.tar.gz
rneovim-9955209afbedd00907a558a6d7d98a643c55455a.tar.bz2
rneovim-9955209afbedd00907a558a6d7d98a643c55455a.zip
fix(substitute): properly check for empty command line
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index c944a5ec93..8190c20c1c 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -2330,8 +2330,6 @@ static int vgetorpeek(bool advance)
// cmdline window.
if (p_im && (State & INSERT)) {
c = Ctrl_L;
- } else if ((State & CMDLINE) && exmode_active) {
- c = '\n';
} else if ((State & CMDLINE) || (cmdwin_type > 0 && tc == ESC)) {
c = Ctrl_C;
} else {