diff options
| author | Bram Moolenaar <Bram@vim.org> | 2014-08-06 14:52:30 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2014-08-06 14:52:30 +0200 |
| commit | b5a7a8b5451c6fe8a2cc1d5d86c42d9b9a50ef98 (patch) | |
| tree | f5616b152c67bfa1de710ca93fe6f883c9069b46 /src/option.h | |
| parent | 8c1329cb59e964797b8abdcf8d42af9877ea8daa (diff) | |
| download | vim-git-b5a7a8b5451c6fe8a2cc1d5d86c42d9b9a50ef98.tar.gz | |
updated for version 7.4.393v7.4.393
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some
multi-byte characters are not displayed, even though the same font
in Notepad can display them. (Srinath Avadhanula)
Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro
Muraoka)
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 edf905844..696d70d6a 100644 --- a/src/option.h +++ b/src/option.h @@ -655,6 +655,9 @@ EXTERN long p_rdt; /* 'redrawtime' */ #endif EXTERN int p_remap; /* 'remap' */ EXTERN long p_re; /* 'regexpengine' */ +#ifdef FEAT_RENDER_OPTIONS +EXTERN char_u *p_rop; /* 'renderoptions' */ +#endif EXTERN long p_report; /* 'report' */ #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) EXTERN long p_pvh; /* 'previewheight' */ |
