Show More
@@ -12,7 +12,7 b' IPython 6.1' | |||||
12 |
|
12 | |||
13 | - Variables now shadow magics in autocompletion. See :ghissue:`4877` and :ghpull:`10542`. |
|
13 | - Variables now shadow magics in autocompletion. See :ghissue:`4877` and :ghpull:`10542`. | |
14 |
|
14 | |||
15 |
- Added the ability to add parameters to alias_magic. For example |
|
15 | - Added the ability to add parameters to alias_magic. For example:: | |
16 |
|
16 | |||
17 | In [2]: %alias_magic hist history --params "-l 2" --line |
|
17 | In [2]: %alias_magic hist history --params "-l 2" --line | |
18 | Created `%hist` as an alias for `%history -l 2`. |
|
18 | Created `%hist` as an alias for `%history -l 2`. | |
@@ -21,8 +21,8 b' IPython 6.1' | |||||
21 | %alias_magic hist history --params "-l 30" --line |
|
21 | %alias_magic hist history --params "-l 30" --line | |
22 | %alias_magic hist history --params "-l 2" --line |
|
22 | %alias_magic hist history --params "-l 2" --line | |
23 |
|
23 | |||
24 | Previously it was only possible to have an alias attached to a single function, |
|
24 | Previously it was only possible to have an alias attached to a single function, | |
25 | and you would have to pass in the given parameters every time:: |
|
25 | and you would have to pass in the given parameters every time:: | |
26 |
|
26 | |||
27 | In [4]: %alias_magic hist history --line |
|
27 | In [4]: %alias_magic hist history --line | |
28 | Created `%hist` as an alias for `%history`. |
|
28 | Created `%hist` as an alias for `%history`. | |
@@ -40,6 +40,15 b' and you would have to pass in the given parameters every time::' | |||||
40 | is specified as a python format string, and currently the only variable it |
|
40 | is specified as a python format string, and currently the only variable it | |
41 | will format is ``{cwd}``. |
|
41 | will format is ``{cwd}``. | |
42 |
|
42 | |||
|
43 | - ``??``/``%pinfo2`` will now show object docstrings if the source can't be retrieved. :ghpull:`10532` | |||
|
44 | - ``IPython.display`` has gained a ``%markdown`` cell magic. :ghpull:`10563` | |||
|
45 | - ``%config`` options can now be tab completed. :ghpull:`10555` | |||
|
46 | - ``%config`` with no arguments are now unique and sorted. :ghpull:`10548` | |||
|
47 | - Completion on keyword arguments does not duplicate ``=`` sign if already present. :ghpull:`10547` | |||
|
48 | - ``%run -m <module>`` now ``<module>`` passes extra arguments to ``<module>``. :ghpull:`10546` | |||
|
49 | - completer now understand "snake case auto complete": if ``foo_bar_kittens`` is | |||
|
50 | a valid completion, I can type ``f_b<tab>`` will complete to it. :ghpull:`10537` | |||
|
51 | - tracebacks are better standardized and will compress `/path/to/home` to `~`. :ghpull:`10515` | |||
43 |
|
52 | |||
44 | The following changes were also added to IPython 5.4, see :ref:`what's new in IPython 5.4 <whatsnew540>` |
|
53 | The following changes were also added to IPython 5.4, see :ref:`what's new in IPython 5.4 <whatsnew540>` | |
45 | for more detail description: |
|
54 | for more detail description: |
General Comments 0
You need to be logged in to leave comments.
Login now