summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-19 18:42:29 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-19 18:42:29 +0100
commit3848e00e0177abdb31bc600234967863ec487233 (patch)
tree24e98aae0cf331b430e63f4dfb712dc161d2190d /runtime/optwin.vim
parentbfb96c047b79b2aab5fd57a2472871508819f3ef (diff)
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.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 46a5ee034c..c44d73a343 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