2009-04-01 20:14:34 -04:00
|
|
|
from mode.ipython import Ipython
|
2009-04-01 20:31:06 -04:00
|
|
|
|
2009-04-01 20:14:34 -04:00
|
|
|
class Console(Ipython):
|
2009-04-01 20:31:06 -04:00
|
|
|
name = 'Console'
|
|
|
|
colors = {}
|
2009-04-01 20:14:34 -04:00
|
|
|
_bindings = {
|
|
|
|
'open-console': ('M-e',),
|
|
|
|
}
|
|
|
|
|
2007-10-19 02:41:33 -04:00
|
|
|
install = Console.install
|