diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-30 22:00:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-30 22:00:20 +0200 |
commit | 5c6dbcb03fa552d7b0e61c8fcf425147eb6bf7d5 (patch) | |
tree | 13f37aa604997567c63b0e5786ee2625282d8d4b /src/option.h | |
parent | 4e83961985abb78757b135f29ac4ffde675247af (diff) | |
download | vim-git-5c6dbcb03fa552d7b0e61c8fcf425147eb6bf7d5.tar.gz |
patch 8.0.1026: GTK on-the-spot input has problemsv8.0.1026
Problem: GTK on-the-spot input has problems. (Gerd Wachsmuth)
Solution: Support over-the-spot. (Yukihiro Nakadaira, Ketn Takata, closes
#1215)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index bfbea39e2..8f7255d8a 100644 --- a/src/option.h +++ b/src/option.h @@ -581,6 +581,9 @@ EXTERN int p_ic; /* 'ignorecase' */ EXTERN char_u *p_imak; /* 'imactivatekey' */ EXTERN char_u *p_imaf; /* 'imactivatefunc' */ EXTERN char_u *p_imsf; /* 'imstatusfunc' */ +EXTERN long p_imst; /* 'imstyle' */ +# define IM_ON_THE_SPOT 0L +# define IM_OVER_THE_SPOT 1L #endif #ifdef USE_IM_CONTROL EXTERN int p_imcmdline; /* 'imcmdline' */ |