ソースを参照

Update with-venv

master
10sr 5年前
コミット
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)


読み込み中…
キャンセル
保存