I am running IronPython 2.0.2 interactive console with Mono 2.4 on OSX Terminal.app . How do I insert indent/tab in the Terminal.app ? I want to do this so I can indent my code.
For example I want to input
print "hello tab"what I see is
print "hellotab"despite pressing the tab key many times. When the command gets executed it prints
hellotab
. Another weird behavior is that after pressing tab a bunch of time and then press delete the tabs shows up, but cannot be removed, and ipy still prints hellotab
.
I tried inserting tabs with IronRuby (ir.exe) and I don't see the tab showing up when I press it, but it is displayed when the command is executed.