diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-02-10 16:57:03 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-02-10 16:57:03 -0500 |
commit | dd98aa76a04567626e066a6db86186b0ce211dfc (patch) | |
tree | 7412b83f4bd874aba54505f24d233a1b89f2e8f8 /lisp | |
parent | 6cbfae79602492590f1078d7530f8ac17c480375 (diff) | |
download | emacs.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')
-rw-r--r-- | lisp/init-python.el | 4 |
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) |