9befd20a1a
Removes dependence on evil-leader centralizing control over the method of key binding in core-keybindings.el
76 lines
2.2 KiB
EmacsLisp
76 lines
2.2 KiB
EmacsLisp
;;; extensions.el --- Python Layer extensions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2014 Sylvain Benner
|
|
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
;; Pre extensions are loaded *before* the packages
|
|
(setq python-pre-extensions '())
|
|
|
|
;; Post extensions are loaded *after* the packages
|
|
(setq python-post-extensions
|
|
'(
|
|
nose
|
|
pylookup
|
|
python-compile
|
|
py-yapf
|
|
))
|
|
|
|
;; Initialize the extensions
|
|
|
|
(defun python/init-nose ()
|
|
(use-package nose
|
|
:if (eq 'nose python-test-runner)
|
|
:commands (nosetests-one
|
|
nosetests-pdb-one
|
|
nosetests-all
|
|
nosetests-pdb-all
|
|
nosetests-module
|
|
nosetests-pdb-module
|
|
nosetests-suite
|
|
nosetests-pdb-suite)
|
|
:init
|
|
(spacemacs/set-leader-keys-for-major-mode 'python-mode
|
|
"tA" 'nosetests-pdb-all
|
|
"ta" 'nosetests-all
|
|
"tB" 'nosetests-pdb-module
|
|
"tb" 'nosetests-module
|
|
"tT" 'nosetests-pdb-one
|
|
"tt" 'nosetests-one
|
|
"tM" 'nosetests-pdb-module
|
|
"tm" 'nosetests-module
|
|
"tS" 'nosetests-pdb-suite
|
|
"ts" 'nosetests-suite)
|
|
:config
|
|
(progn
|
|
(add-to-list 'nose-project-root-files "setup.cfg")
|
|
(setq nose-use-verbose nil))))
|
|
|
|
(defun python/init-pylookup ()
|
|
(use-package pylookup
|
|
:commands (pylookup-lookup pylookup-update pylookup-update-all)
|
|
:init
|
|
(progn
|
|
(evilified-state-evilify pylookup-mode pylookup-mode-map)
|
|
(spacemacs/set-leader-keys-for-major-mode 'python-mode
|
|
"mhH" 'pylookup-lookup))
|
|
:config
|
|
(progn
|
|
(let ((dir (configuration-layer/get-layer-local-dir 'python)))
|
|
(setq pylookup-dir (concat dir "pylookup/")
|
|
pylookup-program (concat pylookup-dir "pylookup.py")
|
|
pylookup-db-file (concat pylookup-dir "pylookup.db"))))))
|
|
|
|
(defun python/init-py-yapf ()
|
|
(use-package py-yapf
|
|
:init
|
|
(spacemacs/set-leader-keys-for-major-mode 'python-mode "=" 'py-yapf-buffer)
|
|
:config
|
|
(if python-enable-yapf-format-on-save
|
|
(add-hook 'python-mode-hook 'py-yapf-enable-on-save))))
|