diff options
-rw-r--r-- | init/km-python.el | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/init/km-python.el b/init/km-python.el index 8d5271a..2463ee5 100644 --- a/init/km-python.el +++ b/init/km-python.el @@ -1,12 +1,13 @@ ;; http://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc5 -(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") +(defun km/setup-ipython-shell () + (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")) |