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 /runtime/optwin.vim | |
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 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 46a5ee034..c44d73a34 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1254,6 +1254,8 @@ if has("multi_byte") endif call append("$", "ambiwidth\twidth of ambiguous width characters") call <SID>OptionG("ambw", &ambw) + call append("$", "emoji\temoji characters are full width") + call <SID>BinOptionG("emo", &emo) endif |