##// END OF EJS Templates
%magic help: display line and cell magics in alphabetical order.
Bradley M. Froehle -
Show More
@@ -80,7 +80,7 b' class BasicMagics(Magics):'
80
80
81 for mtype in ('line', 'cell'):
81 for mtype in ('line', 'cell'):
82 escape = escapes[mtype]
82 escape = escapes[mtype]
83 for fname, fn in magics[mtype].iteritems():
83 for fname, fn in sorted(magics[mtype].items()):
84
84
85 if mode == 'brief':
85 if mode == 'brief':
86 # only first line
86 # only first line
General Comments 0
You need to be logged in to leave comments. Login now