Andrew
Andrew

Reputation: 6860

How do I scroll through the autocomplete options in emacs-jedi (besides arrow keys)

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)

Upvotes: 1

Views: 345

Answers (1)

Jack
Jack

Reputation: 21163

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)  

Upvotes: 1

Related Questions