summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-15 14:04:01 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-15 14:04:01 +0200
commit1b0675caece63c559951629837520a782d8c9cb8 (patch)
tree8fa5978e133b045e086fb7fadb3d5533416abd3c /src/structs.h
parent74675a666b51edd61e0210132658d81a86c5102c (diff)
downloadvim-1b0675caece63c559951629837520a782d8c9cb8.zip
patch 8.0.0712: the terminal implementation is incomplete
Problem: The terminal implementation is incomplete. Solution: Add the 'termkey' option.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index c3f120008..88e71b60e 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -270,6 +270,8 @@ typedef struct
# define w_p_scl w_onebuf_opt.wo_scl /* 'signcolumn' */
#endif
#ifdef FEAT_TERMINAL
+ char_u *wo_tk;
+#define w_p_tk w_onebuf_opt.wo_tk /* 'termkey' */
char_u *wo_tms;
#define w_p_tms w_onebuf_opt.wo_tms /* 'termsize' */
#endif