aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-04-04 06:13:42 +0800
committerGitHub <noreply@github.com>2022-04-04 06:13:42 +0800
commita93b55273f76e5fe23f614e691536435999f4452 (patch)
tree85fd7d31fc2dc1b7dfbd2695002a24908c5ff707 /src/nvim/getchar.c
parentd73bf3138a802bb6c1c654cd913d4e91932287f8 (diff)
parent559dcf45a1ff20b2f1a315b553fc36d4d60003f7 (diff)
downloadrneovim-a93b55273f76e5fe23f614e691536435999f4452.tar.gz
rneovim-a93b55273f76e5fe23f614e691536435999f4452.tar.bz2
rneovim-a93b55273f76e5fe23f614e691536435999f4452.zip
Merge pull request #17986 from zeertzjq/fix-ex-mode-regression
Fix regression with :normal and Ex mode from #14311
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 {