summaryrefslogtreecommitdiff
path: root/lisp/init-python.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-02-10 16:57:03 -0500
committerKyle Meyer <kyle@kyleam.com>2014-02-10 16:57:03 -0500
commitdd98aa76a04567626e066a6db86186b0ce211dfc (patch)
tree7412b83f4bd874aba54505f24d233a1b89f2e8f8 /lisp/init-python.el
parent6cbfae79602492590f1078d7530f8ac17c480375 (diff)
downloademacs.d-dd98aa76a04567626e066a6db86186b0ce211dfc.tar.gz
Swap python test and compile keybindings
I keep using the wrong one, so I must think it makes more sense this way.
Diffstat (limited to 'lisp/init-python.el')
-rw-r--r--lisp/init-python.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el
index dce210f..d2f15b7 100644
--- a/lisp/init-python.el
+++ b/lisp/init-python.el
@@ -33,8 +33,8 @@ If ARG, use pytest2 instead of pytest."
(compile pytest)))
(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") 'km/pytest-compile))
+ (local-set-key (kbd "C-c m t") 'km/create-python-test-file)
+ (local-set-key (kbd "C-c m c") 'km/pytest-compile))
(add-hook 'python-mode-hook 'km/python-hook)