Sfoglia il codice sorgente

Fix with-venv

master
10sr 5 anni fa
parent
commit
796a5f9284
Firmato da: 10sr ID Chiave GPG: 7BEC428194130EB2
1 ha cambiato i file con 4 aggiunte e 9 eliminazioni
  1. +4
    -9
      emacs.el

+ 4
- 9
emacs.el Vedi File

@@ -2056,6 +2056,7 @@ suitable environment was found."
`(with-venv-dir
;; If set explicitly use it
(or with-venv-venv-dir
;; Check previously used directory
(with-venv-check-exists with-venv-previously-used)
(setq with-venv-previously-used (with-venv-find-venv-dir)))
,@body))
@@ -2067,18 +2068,12 @@ If none found return nil."
(when dir
(cd dir))
(or
;; Check used previously
(with-venv-check-exists
with-venv-previously-used)
;; Check pipenv
(with-venv-check-exists
(with-venv--find-venv-dir-pipenv))
(with-venv-check-exists (with-venv--find-venv-dir-pipenv))
;; Check poetry
(with-venv-check-exists
(with-venv--find-venv-dir-poetry))
(with-venv-check-exists (with-venv--find-venv-dir-poetry))
;; Search for .venv dir
(with-venv-check-exists
(with-venv--find-venv-dir-by-name)))))
(with-venv-check-exists (with-venv--find-venv-dir-by-name)))))

(defun with-venv--find-venv-dir-pipenv ()
"Try to find venv dir via pipenv."


Caricamento…
Annulla
Salva