Pacha
Pacha

Reputation: 1526

Show all possible completitions in Emacs using auto-complete.el

I have auto-complete.el, using Emacs. When I type something, only part of the suggestion appears, and I want to set a key shortcut or something, to enable the whole thing and show all possible suggestions. Using it in Python mode.

When I first installed it, I used it once, don't remember how (possibly automatically).

Upvotes: 1

Views: 60

Answers (1)

abo-abo
abo-abo

Reputation: 20342

Try this:

(add-hook
 'python-mode-hook
 (lambda()
   (define-key python-mode-map "\C-i" 'auto-complete)))

Upvotes: 1

Related Questions