私は emacs の初心者で、快適な python IDE のように機能するように拡張しようとしています。問題は、Ipython を emacs に統合できないように見えることです。Xubuntu 13.04でIpython 0.13.2を使用してemacs 24.2を実行しています。
これを .emacs ファイルに追加してみました:
(setq
python-shell-interpreter "ipython"
python-shell-interpreter-args ""
python-shell-prompt-regexp "In \\[[0-9]+\\]: "
python-shell-prompt-output-regexp "Out\\[[0-9]+\\]: "
python-shell-completion-setup-code
"from IPython.core.completerlib import module_completion"
python-shell-completion-module-string-code
"';'.join(module_completion('''%s'''))\n"
python-shell-completion-string-code
"';'.join(get_ipython().Completer.all_completions('''%s'''))\n")
しかし、emacs から python コンソールを実行すると (Python > Start Interpreter)、「Inferior Python Mode」が表示されます。「emacs-ipython-notebook」も試しましたが、探しているものではないようです...
ありがとう!