소스 검색

Fix with-venv

master
10sr 7 년 전
부모
커밋
796a5f9284
로그인 계정: 10sr GPG 키 ID: 7BEC428194130EB2
1개의 변경된 파일4개의 추가작업 그리고 9개의 파일을 삭제
  1. +4
    -9
      emacs.el

+ 4
- 9
emacs.el 파일 보기

@@ -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."


불러오는 중...
취소
저장