1

I would like emacs show all available functions after input dot symbol, for example, after input re., emacs show search, findall, ... then I can select one of them.

I have installed auto-complete mode and jedi-mode, but it only show function definitions after I input the function name.

Maybe I do not config it correctly?

Drew
  • 75,699
  • 9
  • 109
  • 225
lucky1928
  • 1,622
  • 8
  • 28

1 Answers1

1

from this document:

(add-hook 'python-mode-hook 'jedi:setup)
(setq jedi:setup-keys t)                      ; optional
(setq jedi:complete-on-dot t)                 ; optional
beetlej
  • 1,056
  • 1
  • 7
  • 20