AshokEmrys / conque

code.google.com/p/conque
0 stars 0 forks source link

Control characters not properly displayed #20

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Start MacVim
2. Type :ConqueTerm ipython

What is the expected output? What do you see instead?

I'm expecting a normal ipython session, and it seems to work but the control 
characters in the prompt are displayed literally rather than being interpreted 
(I think). This doesn't happen when I run ipython from the command line. Could 
this be a readline problem? I don't have this problem running bash from 
ConqueTerm, so I suspect it is something to do with my ipython set up not 
playing nicely.

What version of the product are you using? On what operating system?

Mac OS X - 10.6.4
MacVim - snapshot 52
ipython - 0.10
ConqueTerm - v1.1

Please provide any additional information below.

Original issue reported on code.google.com by and...@halfcooked.com on 14 Aug 2010 at 7:02

Attachments:

GoogleCodeExporter commented 8 years ago
Thanks for the bug report. I'll take a look.

While I figure out why Conque is breaking on ^A^B, you might want to try 
running ipython without color as a temp solution. E.g:

:ConqueTerm ipython -colors NoColor

Original comment by nicora...@gmail.com on 14 Aug 2010 at 5:21

GoogleCodeExporter commented 8 years ago
You were right. Readline problem. Installing the readline python module should 
fix everything. Try

sudo easy_install readline

The ipython documention recommends the same for installing ipython as

sudo easy_install readline ipython

For fix: Checked in handling of SOH/STX chars

Original comment by nicora...@gmail.com on 15 Aug 2010 at 3:18