pmacs3/mode/console.py

11 lines
188 B
Python
Raw Normal View History

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