spacemacs/layers/+lang/python/extensions.el
Eivind Fonn c1561eadb7 Fix pylookup
- Set executable bit on pylookup.py
- Add update functions to autoload
- Document use of update functions
- Fix path setup
2015-10-07 15:51:39 -04:00

77 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
(evil-leader/set-key-for-mode 'python-mode
"mtA" 'nosetests-pdb-all
"mta" 'nosetests-all
"mtB" 'nosetests-pdb-module
"mtb" 'nosetests-module
"mtT" 'nosetests-pdb-one
"mtt" 'nosetests-one
"mtM" 'nosetests-pdb-module
"mtm" 'nosetests-module
"mtS" 'nosetests-pdb-suite
"mts" '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
(evilify pylookup-mode pylookup-mode-map)
(evil-leader/set-key-for-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
(evil-leader/set-key-for-mode 'python-mode "m=" 'py-yapf-buffer)
:config
(if python-enable-yapf-format-on-save
(add-hook 'python-mode-hook 'py-yapf-enable-on-save))))