1

Up and down arrow keys work but I was wondering if there was another option on the home row. If not, how do I set it to something else? (emacs noob)

Andrew
  • 6,295
  • 11
  • 56
  • 95

1 Answers1

1

emacs-jedi uses auto-complete under the hood

These are also supported (besides the default arrows):

M-n Next item

M-p Previous item

If you wanted to change them you could do something like this:

(define-key ac-completing-map (kbd "C-c j") 'ac-next)
(define-key ac-completing-map (kbd "C-c k") 'ac-previous)  
Jack
  • 20,735
  • 11
  • 48
  • 48