I'm using emacs24.0.92 with IPython 12. I took ipython.el file from IPython repository and also tried this patch however auto-completion still does not work for me. Can someone give any hint about it ?
相关问题
- Symbol's function definition is void: declare-
- How can I set the SVN password with Emacs 23.1 bui
- Emacs shell: save commit message
- Access IPython's profile history (history.sqli
- Pandas and NumPy default width change on startup
相关文章
- ess-rdired: I get this error “no ESS process is as
- Emacs/xterm color annoyance on Linux
- cython in jupyter notebook
- python: ignoring leading “>>>” and “…” in interact
- Pipe less to Emacs
- Capturing the output of “diff” with org-babel
- emacs terminal mode: how to copy and paste efficie
- How to permanently enable the hs-minor-mode in ema
That's an old question but since I was looking for it:
1- python-mode.el
A quick search lead me to this working solution: http://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc5
2- jedi
You still can use the completion given by
jedi.el
:http://jedi.jedidjah.ch/en/latest/
http://wikemacs.org/index.php/Python#Jedi
http://aliquote.org/memos/2013/02/11/emacs-auto-completion-for-python
Install with
packages.el
and callM-x jedi:setup
. Now the completion fires at the third character. We still can not inspect an object with TAB like in a terminal, but with the 1st solution we can. edit: false, it's just a matter of configuration: http://tkf.github.io/emacs-jedi/released/#configuration (usejedi:complete-on-dot
to complete as soon as we enter a dot).