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

341 Views Asked by At

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)

1

There are 1 best solutions below

0
On BEST ANSWER

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)