It appears that only input not accepted. The basic issue lies in getchar:
|
if c in string.printable: |
|
return c |
|
else: |
|
return UNDEFINED_KEY |
where string.printable contains only printable ASCII characters. This leaves all people with wider utf-8 input in the cold.
It appears that only input not accepted. The basic issue lies in
getchar:bullet/bullet/utils.py
Lines 52 to 55 in 75f620d
where string.printable contains only printable ASCII characters. This leaves all people with wider utf-8 input in the cold.