diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-19 18:42:29 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-19 18:42:29 +0100 |
commit | 3848e00e0177abdb31bc600234967863ec487233 (patch) | |
tree | 24e98aae0cf331b430e63f4dfb712dc161d2190d /src/option.h | |
parent | bfb96c047b79b2aab5fd57a2472871508819f3ef (diff) | |
download | vim-git-3848e00e0177abdb31bc600234967863ec487233.tar.gz |
patch 7.4.1604v7.4.1604
Problem: Although emoji characters are ambiguous width, best is to treat
them as full width.
Solution: Update the Unicode character tables. Add the 'emoji' options.
(Yasuhiro Matsumoto)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h index 460e30084..e962ba379 100644 --- a/src/option.h +++ b/src/option.h @@ -318,6 +318,7 @@ EXTERN int p_acd; /* 'autochdir' */ #endif #ifdef FEAT_MBYTE EXTERN char_u *p_ambw; /* 'ambiwidth' */ +EXTERN char_u *p_emoji; /* 'emoji' */ #endif #if defined(FEAT_GUI) && defined(MACOS_X) EXTERN int *p_antialias; /* 'antialias' */ |