Monday, August 28, 2006

emacs autocomplete eldoc

> how do i make it show completeion when i type
> import aspell

> then aspell. SHOULD autocomplete available classes and functions

> then after i type aspell.Dict(
> should tell me wat arguments

M-TAB should be bound to python-complete-symbol. That should do what you want I
think.
After you have typed your imports, you should be able to use C-c TAB in your
code buffer to run python-find-imports. After doing this, eldoc-mode should
display the function argument information after you type the (.

No comments: