summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-09-14 20:37:57 +0200
committerBram Moolenaar <Bram@vim.org>2017-09-14 20:37:57 +0200
commit69fbc9e1dab176f345719436cd89d854df0a2abd (patch)
treecb082b52c6e0e9a2bd99db92b83aa7269d90cdaa /src/main.c
parent38baa3e63427112d389de5e5942243414d9b1336 (diff)
downloadvim-69fbc9e1dab176f345719436cd89d854df0a2abd.zip
patch 8.0.1108: cannot specify mappings for the terminal window
Problem: Cannot specify mappings for the terminal window. Solution: Add the :tmap command and associated code. (Jacob Askeland, closes #2073)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 584008585..e2c04f66c 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1363,7 +1363,7 @@ main_loop(
/* If terminal_loop() returns OK we got a key that is handled
* in Normal model. With FAIL we first need to position the
* cursor and the screen needs to be redrawn. */
- if (terminal_loop() == OK)
+ if (terminal_loop(TRUE) == OK)
normal_cmd(&oa, TRUE);
}
else