diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-09-14 20:37:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-09-14 20:37:57 +0200 |
commit | 69fbc9e1dab176f345719436cd89d854df0a2abd (patch) | |
tree | cb082b52c6e0e9a2bd99db92b83aa7269d90cdaa /src/vim.h | |
parent | 38baa3e63427112d389de5e5942243414d9b1336 (diff) | |
download | vim-git-69fbc9e1dab176f345719436cd89d854df0a2abd.tar.gz |
patch 8.0.1108: cannot specify mappings for the terminal windowv8.0.1108
Problem: Cannot specify mappings for the terminal window.
Solution: Add the :tmap command and associated code. (Jacob Askeland,
closes #2073)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -716,9 +716,10 @@ extern int (*dyn_libintl_putenv)(const char *envstring); #define SHOWMATCH (0x700 + INSERT) /* show matching paren */ #define CONFIRM 0x800 /* ":confirm" prompt */ #define SELECTMODE 0x1000 /* Select mode, only for mappings */ +#define TERMINAL 0x2000 /* Terminal mode */ -#define MAP_ALL_MODES (0x3f | SELECTMODE) /* all mode bits used for - * mapping */ +/* all mode bits used for mapping */ +#define MAP_ALL_MODES (0x3f | SELECTMODE | TERMINAL) /* directions */ #define FORWARD 1 |