Robpol86/terminaltables

Colum width is wrong if emoji is used

StShadow opened this issue ยท 5 comments

Follow snippet draws a table with incorrect width for column with Unicode smile (for example ๐Ÿ˜ต, dizzy face, Unicode: U+1F635, UTF-8: F0 9F 98 B5).

#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-

if __name__ == '__main__':
    table_data = [['๐Ÿ˜ต'], ['๐Ÿ˜ต']]
    from terminaltables import SingleTable
    table = SingleTable(table_data)
    print table.table

Result:
screen shot 2017-09-19 at 16 16 23

tadgh commented

I also have this issue, would love to see it addressed at some point ๐Ÿ‘

10gic commented

@StShadow @tadgh There is a command line utility YATG, option --width1-chars=emoji can avoid this issue.

Please address this issue. It would be greatly appreciated

Seems it works now

image

$ sw_vers
ProductName: Mac OS X
ProductVersion: 10.14.2
BuildVersion: 18C54

iTerm2 v3.2.5
Terminal v2.9.1 (421.1)