diff --git a/docs/source/whatsnew/development.rst b/docs/source/whatsnew/development.rst index 15e12da..532ba74 100644 --- a/docs/source/whatsnew/development.rst +++ b/docs/source/whatsnew/development.rst @@ -23,65 +23,10 @@ Need to be updated: pr/* - -Unicode name completions -======================== - -The #11583 Pull Request provides IPython a new feature. - -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', 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', -.... -The command "if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then -pip install -r docs/requirements.txt - python tools/fixup_whats_new_pr.py - make -C docs/ html SPHINXOPTS="-W" - -Unicode name completions -======================== - -The #11583 Pull Request provides IPython a new feature. - -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', 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', -.... - -Unicode name completions -======================== - -The #11583 Pull Request provides IPython a new feature. - -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', 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', - .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. Backwards incompatible changes ------------------------------ -.. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. \ No newline at end of file +.. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. diff --git a/docs/source/whatsnew/pr/unicode-name-completions.rst b/docs/source/whatsnew/pr/unicode-name-completions.rst index f1a23bb..07d7fbe 100644 --- a/docs/source/whatsnew/pr/unicode-name-completions.rst +++ b/docs/source/whatsnew/pr/unicode-name-completions.rst @@ -1,4 +1,19 @@ Unicode name completions ======================== -The #11583 Pull Request provides IPython a new feature. 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', 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', etc. \ No newline at end of file +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``, 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`.