From 2dc1c616d1d67b6022ef47b3e222c4c1af803f8a Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 4 Mar 2017 18:46:38 -0500 Subject: [PATCH] lang/python: add +python/repl --- modules/lang/python/autoload.el | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 modules/lang/python/autoload.el diff --git a/modules/lang/python/autoload.el b/modules/lang/python/autoload.el new file mode 100644 index 000000000..e59d71450 --- /dev/null +++ b/modules/lang/python/autoload.el @@ -0,0 +1,6 @@ +;;; lang/python/autoload.el + +;;;###autoload +(defun +python/repl () + "Open the Python REPL." + (process-buffer (run-python python-shell-interpreter t t)))