diff runtime/optwin.vim @ 8629:54ac275e3fc4 v7.4.1604

commit https://github.com/vim/vim/commit/3848e00e0177abdb31bc600234967863ec487233 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 19 18:42:29 2016 +0100 patch 7.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)
author Christian Brabandt <cb@256bit.org>
date Sat, 19 Mar 2016 18:45:04 +0100
parents 95d59081580f
children ed7251c3e2d3
line wrap: on
line diff
--- 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