##// END OF EJS Templates
remove ghpro instruction to backport
remove ghpro instruction to backport

File last commit:

r24955:01337f2f
r24979:31fcabad
Show More
unicode-name-completions.rst
19 lines | 677 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / unicode-name-completions.rst
Luciana da Costa Marques
Corrects whitespace error
r24954 Unicode name completions
Luciana da Costa Marques
Add #11583 description on docs/source/whatsnew/pr
r24952 ========================
Matthias Bussonnier
deduplicate entry and fix formatting
r24955 Previously, we provided completion for a unicode name with its relative symbol.
With this, now IPython provides complete suggestions to unicode name symbols.
As on the PR, if user types ``\LAT<tab>``, IPython provides a list of
possible completions. In this case, it would be something like:
'LATIN CAPITAL LETTER A',
'LATIN CAPITAL LETTER B',
'LATIN CAPITAL LETTER C',
'LATIN CAPITAL LETTER D',
....
This help to type unicode character that do not have short latex aliases, and
have long unicode names. for example ``Ͱ``, ``\GREEK CAPITAL LETTER HETA``.
This feature was contributed by Luciana Marques `ghpull:`#11583`.