소스 검색

Update with-venv

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

+ 9
- 7
emacs.el 파일 보기

@@ -2035,13 +2035,15 @@ If dir is nil, execute BODY as usual."
(unwind-protect
(progn
(when ,dir
;; Do the same thing that bin/activate does
(setq exec-path
(cons (concat ,dir "/bin")
exec-path))
(setenv "VIRTUAL_ENV" ,dir)
(setenv "PATH" (concat ,dir "/bin:" (or (getenv "PATH") "")))
(setenv "PYTHONHOME"))
(let* ((dir (file-name-as-directory ,dir))
(bin (expand-file-name "bin" dir)))
;; Do the same thing that bin/activate does
(setq exec-path
(cons bin
exec-path))
(setenv "VIRTUAL_ENV" dir)
(setenv "PATH" (concat bin ":" (or (getenv "PATH") "")))
(setenv "PYTHONHOME")))
,@body)
(setq process-environment
--with-venv-process-environment-orig)


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