Bash inside Vim not working properly

bashosxvim

In MacVim I'm using Conque to run bash commands inside Vim. I have a problem with the text navigation while using Conque.

If I'm at the end of a line of text and press down Alt I skip a word to the left, if I then press the cursor moves back to after the word I skipped. How do I solve this?

Here you can see that I first move a few characters using and then Alt to move to the start of the word. Then when I press I get back to where I were.

enter image description here

Best Answer

I would consider filing a bug report. In the meantime, why not letting bash behave more vi-like? Issue set -o vi to use vi navigation in bash.

UPDATE

I've added this as an issue on the Conque website, here:

Related Question