I wanna add some key bindings on ansi-term's char mode but I couldn't yet... Do you have some tips for that? Is possible?

All my key bindings works properly in line mode, obviously, but how can I enable some key bindings (not all) in char mode?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

There are actually two different modes used by ansi-term

  1. character mode (acts more like a terminal
  2. line mode (acts more like an emacs buffer)

For character mode, you'll want modify the term-raw-map, so something like:

(define-key term-raw-map [(control ?a)] 'term-send-raw)

will send \C-a to the underlying terminal. I don't know what the key-map is for line-mode, but I'm guessing it's character mode you want to play with.

link|improve this answer
Exactly what I was needing! Thanks! – semente Nov 15 '10 at 21:35
Ah, the key map for line mode is term-mode-map. – semente Nov 15 '10 at 21:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.