##// END OF EJS Templates
Try to fix updating classes in Autoreload....
Try to fix updating classes in Autoreload. There seem to have been some infinite recursion in the previous version of the code, so implement a more classical graph finding algorithm. This should still be properly tested

File last commit:

r24955:01337f2f
r24976:f3c5ecdf
Show More
unicode-name-completions.rst
19 lines | 677 B | text/x-rst | RstLexer
/ docs / source / whatsnew / pr / unicode-name-completions.rst

Unicode name completions

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.