Show More
@@ -1,87 +1,32 b'' | |||
|
1 | 1 | ===================== |
|
2 | 2 | Development version |
|
3 | 3 | ===================== |
|
4 | 4 | |
|
5 | 5 | This document describes in-flight development work. |
|
6 | 6 | |
|
7 | 7 | .. warning:: |
|
8 | 8 | |
|
9 | 9 | Please do not edit this file by hand (doing so will likely cause merge |
|
10 | 10 | conflicts for other Pull Requests). Instead, create a new file in the |
|
11 | 11 | `docs/source/whatsnew/pr` folder |
|
12 | 12 | |
|
13 | 13 | |
|
14 | 14 | Released .... ...., 2017 |
|
15 | 15 | |
|
16 | 16 | |
|
17 | 17 | Need to be updated: |
|
18 | 18 | |
|
19 | 19 | .. toctree:: |
|
20 | 20 | :maxdepth: 2 |
|
21 | 21 | :glob: |
|
22 | 22 | |
|
23 | 23 | pr/* |
|
24 | 24 | |
|
25 | 25 | |
|
26 | ||
|
27 | Unicode name completions | |
|
28 | ======================== | |
|
29 | ||
|
30 | The #11583 Pull Request provides IPython a new feature. | |
|
31 | ||
|
32 | Previously, we provided completion for a unicode name with its relative symbol. | |
|
33 | With this, now IPython provides complete suggestions to unicode name symbols. | |
|
34 | ||
|
35 | As on the PR, if user types '\LAT<tab>', IPython provides a list of | |
|
36 | possible completions. In this case, it would be something like: | |
|
37 | ||
|
38 | 'LATIN CAPITAL LETTER A', | |
|
39 | 'LATIN CAPITAL LETTER B', | |
|
40 | 'LATIN CAPITAL LETTER C', | |
|
41 | 'LATIN CAPITAL LETTER D', | |
|
42 | .... | |
|
43 | The command "if [[ "$TRAVIS_PYTHON_VERSION" == "3.7" ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then | |
|
44 | pip install -r docs/requirements.txt | |
|
45 | python tools/fixup_whats_new_pr.py | |
|
46 | make -C docs/ html SPHINXOPTS="-W" | |
|
47 | ||
|
48 | Unicode name completions | |
|
49 | ======================== | |
|
50 | ||
|
51 | The #11583 Pull Request provides IPython a new feature. | |
|
52 | ||
|
53 | Previously, we provided completion for a unicode name with its relative symbol. | |
|
54 | With this, now IPython provides complete suggestions to unicode name symbols. | |
|
55 | ||
|
56 | As on the PR, if user types '\LAT<tab>', IPython provides a list of | |
|
57 | possible completions. In this case, it would be something like: | |
|
58 | ||
|
59 | 'LATIN CAPITAL LETTER A', | |
|
60 | 'LATIN CAPITAL LETTER B', | |
|
61 | 'LATIN CAPITAL LETTER C', | |
|
62 | 'LATIN CAPITAL LETTER D', | |
|
63 | .... | |
|
64 | ||
|
65 | Unicode name completions | |
|
66 | ======================== | |
|
67 | ||
|
68 | The #11583 Pull Request provides IPython a new feature. | |
|
69 | ||
|
70 | Previously, we provided completion for a unicode name with its relative symbol. | |
|
71 | With this, now IPython provides complete suggestions to unicode name symbols. | |
|
72 | ||
|
73 | As on the PR, if user types '\LAT<tab>', IPython provides a list of | |
|
74 | possible completions. In this case, it would be something like: | |
|
75 | ||
|
76 | 'LATIN CAPITAL LETTER A', | |
|
77 | 'LATIN CAPITAL LETTER B', | |
|
78 | 'LATIN CAPITAL LETTER C', | |
|
79 | 'LATIN CAPITAL LETTER D', | |
|
80 | ||
|
81 | 26 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. FEATURE INSERTION POINT. |
|
82 | 27 | |
|
83 | 28 | |
|
84 | 29 | Backwards incompatible changes |
|
85 | 30 | ------------------------------ |
|
86 | 31 | |
|
87 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. No newline at end of file | |
|
32 | .. DO NOT EDIT THIS LINE BEFORE RELEASE. INCOMPAT INSERTION POINT. |
@@ -1,4 +1,19 b'' | |||
|
1 | 1 | Unicode name completions |
|
2 | 2 | ======================== |
|
3 | 3 | |
|
4 | 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<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', etc. No newline at end of file | |
|
4 | Previously, we provided completion for a unicode name with its relative symbol. | |
|
5 | With this, now IPython provides complete suggestions to unicode name symbols. | |
|
6 | ||
|
7 | As on the PR, if user types ``\LAT<tab>``, IPython provides a list of | |
|
8 | possible completions. In this case, it would be something like: | |
|
9 | ||
|
10 | 'LATIN CAPITAL LETTER A', | |
|
11 | 'LATIN CAPITAL LETTER B', | |
|
12 | 'LATIN CAPITAL LETTER C', | |
|
13 | 'LATIN CAPITAL LETTER D', | |
|
14 | .... | |
|
15 | ||
|
16 | This help to type unicode character that do not have short latex aliases, and | |
|
17 | have long unicode names. for example ``Ͱ``, ``\GREEK CAPITAL LETTER HETA``. | |
|
18 | ||
|
19 | This feature was contributed by Luciana Marques `ghpull:`#11583`. |
General Comments 0
You need to be logged in to leave comments.
Login now