summaryrefslogtreecommitdiff
path: root/lisp/init-python.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-01-26 01:59:44 -0500
committerKyle Meyer <kyle@kyleam.com>2014-01-26 01:59:44 -0500
commit7869360008d87ca4b459c703f4894625dd8181cc (patch)
treeb0f3f50ae2c309056883e03848abb3e1e4cb9b1e /lisp/init-python.el
parent47e1d90700105f6b0f0550d7632a22b3fe81acb9 (diff)
downloademacs.d-7869360008d87ca4b459c703f4894625dd8181cc.tar.gz
Follow Purcell's emacs.d structure
User init files are added using provide/require. https://github.com/purcell/emacs.d
Diffstat (limited to 'lisp/init-python.el')
-rw-r--r--lisp/init-python.el45
1 files changed, 45 insertions, 0 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el
new file mode 100644
index 0000000..ae4871b
--- /dev/null
+++ b/lisp/init-python.el
@@ -0,0 +1,45 @@
+;; http://www.emacswiki.org/emacs/PythonProgrammingInEmacs#toc5
+(defun km/setup-ipython-shell ()
+ (interactive)
+ (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/create-python-test-file (arg)
+ "Create a python test file from the name of the current file.
+Unless a prefix argument ARG is given, py.test is also imported."
+ (interactive "P")
+ (let* ((py-file (file-name-nondirectory buffer-file-name))
+ (test-file (concat "test_" py-file)))
+ (when (file-exists-p test-file)
+ (error "Test file %s already exists." test-file))
+ (with-current-buffer (find-file-other-window test-file)
+ (insert (format "import %s\n" (file-name-sans-extension py-file)))
+ (unless arg
+ (insert "import pytest\n")))))
+
+(defun km/python-hook ()
+ (local-set-key (kbd "C-c m c") 'km/create-python-test-file)
+ (local-set-key (kbd "C-c m t") '(lambda ()
+ (interactive)
+ (compile "py.test")))
+ (local-set-key (kbd "C-c m T") '(lambda ()
+ (interactive)
+ (compile "py.test2"))))
+
+(add-hook 'python-mode-hook 'km/python-hook)
+
+(add-to-list 'interpreter-mode-alist '("python2" . python-mode))
+(add-to-list 'interpreter-mode-alist '("python3" . python-mode))
+
+(setq python-fill-docstring-style 'pep-257-nn)
+
+(provide 'init-python)