diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-15 14:04:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-15 14:04:01 +0200 |
commit | 1b0675caece63c559951629837520a782d8c9cb8 (patch) | |
tree | 8fa5978e133b045e086fb7fadb3d5533416abd3c /src/structs.h | |
parent | 74675a666b51edd61e0210132658d81a86c5102c (diff) | |
download | vim-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.h | 2 |
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 |