From 01f4694604c57287621a7f7ff4127dd1d386fcd7 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Sun, 12 Jan 2020 22:29:27 +0900 Subject: [PATCH] Enable with-venv-info-mode if available --- emacs.el | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/emacs.el b/emacs.el index f15ffbb..47e4525 100644 --- a/emacs.el +++ b/emacs.el @@ -1402,15 +1402,6 @@ found, otherwise returns nil." (when (require 'with-venv nil t) (with-venv-advice-add 'pydoc))) - -(when (autoload-eval-lazily 'pipenv) - ;; (declare-function pipenv-projectile-after-switch-default "pipenv") - ;; (add-hook 'python-mode-hook - ;; (lambda () - ;; (pipenv-mode 1) - ;; (pipenv-projectile-after-switch-default))) - ) - (set-variable 'flycheck-python-mypy-ini ".mypy.ini") (set-variable 'flycheck-flake8rc "setup.cfg") @@ -1460,6 +1451,10 @@ found, otherwise returns nil." 'my-set-venv-flycheck-executable-find) (add-hook 'python-mode-hook 'my-update-flycheck-flake8-error-level-alist) +(when (fboundp 'with-venv-info-mode) + (add-hook 'python-mode-hook + 'with-venv-info-mode)) + ;; Run multiple chekcers ;; https://github.com/flycheck/flycheck/issues/186