From a9e714802302555f8b39ddc3e53f88454bd63dd5 Mon Sep 17 00:00:00 2001 From: Matthias BUSSONNIER Date: Tue, 3 Jul 2012 14:40:32 +0200 Subject: [PATCH] re-aliad %ed to %edit in qtconsole fixes #2085 --- IPython/zmq/zmqshell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/zmq/zmqshell.py b/IPython/zmq/zmqshell.py index fe05bd2a258..60fa06d5e70 100644 --- a/IPython/zmq/zmqshell.py +++ b/IPython/zmq/zmqshell.py @@ -575,6 +575,7 @@ def set_next_input(self, text): def init_magics(self): super(ZMQInteractiveShell, self).init_magics() self.register_magics(KernelMagics) + self.run_line_magic('alias_magic', 'ed edit')