I'm trying Projectile + ido
+ flx-ido
(just for Projectile, ido-mode
disabled otherwise).
But: I don't like using right and left to switch between items. I want to change them into up and down, but have been unsuccessful:
(define-key ido-common-completion-map (kbd "<down>") 'ido-next-match)
(define-key ido-common-completion-map (kbd "<up>") 'ido-prev-match)
(define-key ido-completion-map (kbd "<down>") 'ido-next-match)
(define-key ido-completion-map (kbd "<up>") 'ido-prev-match)
My question, therefore, is: How do I bind keys in ido-mode
?