зеркало из https://github.com/github/ruby.git
[ruby/reline] Fix crash to input `é`. refs #174
https://github.com/ruby/reline/commit/ba5e267e5f
This commit is contained in:
Родитель
ff4656ee64
Коммит
e47e5db889
|
@ -89,6 +89,9 @@ class Reline::Unicode
|
|||
| #{ EastAsianWidth::TYPE_NA }
|
||||
| #{ EastAsianWidth::TYPE_N }
|
||||
)
|
||||
| (?<ambiguous_width>
|
||||
#{EastAsianWidth::TYPE_A}
|
||||
)
|
||||
/x
|
||||
|
||||
def self.get_mbchar_width(mbchar)
|
||||
|
@ -98,6 +101,7 @@ class Reline::Unicode
|
|||
when m[:width_3] then 3
|
||||
when m[:width_0] then 0
|
||||
when m[:width_1] then 1
|
||||
when m[:ambiguous_width] then Reline.ambiguous_width
|
||||
else
|
||||
nil
|
||||
end
|
||||
|
|
Загрузка…
Ссылка в новой задаче