Explorar el Código

Fix error of with-venv absence

master
10sr hace 4 años
padre
commit
e41c384c80
Firmado por: 10sr ID de clave GPG: C384BB17CBB19347
Se han modificado 1 ficheros con 6 adiciones y 5 borrados
  1. +6
    -5
      emacs.el

+ 6
- 5
emacs.el Ver fichero

@@ -1624,11 +1624,12 @@ ORIG-FUNC is the target function, and ARGS is the argument when it is called."
(defun my-set-venv-flycheck-executable-find ()
"Set flycheck executabie find."
(interactive)
(set-variable 'flycheck-executable-find
'(lambda (e)
(with-venv
(executable-find e)))
t))
(when (fboundp 'with-venv)
(set-variable 'flycheck-executable-find
'(lambda (e)
(with-venv
(executable-find e)))
t)))

(defun my-update-flycheck-flake8-error-level-alist ()
"Update `flycheck-flake8-error-level-alist'."


Cargando…
Cancelar
Guardar