Browse Source

Bugfix

master
Raphael Roberts 6 years ago
parent
commit
8f3097d4e8
  1. 1
      custom.el
  2. 6
      settings.org

1
custom.el

@ -108,6 +108,7 @@
apache-mode
web-mode
undo-tree)))
'(python-check-command "flake8")
'(reb-re-syntax (quote string))
'(safe-local-variable-values
(quote ((project-venv))))

6
settings.org

@ -299,10 +299,10 @@ put executables in elpy-rpc-venv in path
(path-entry)
(elpy-binpath))
(if (string-equal system-type "windows-nt")
(progn (setq path-entry (replace-regexp-in-string (regexp-quote "/")
(progn (setq elpy-binpath (expand-file-name "Scripts"))
(setq path-entry (replace-regexp-in-string (regexp-quote "/")
(regexp-quote "\\")
elpy-binpath))
(setq elpy-binpath (expand-file-name "Scripts")))
elpy-binpath)))
(setq elpy-binpath (expand-file-name "bin"))
(setq path-entry elpy-binpath))
(nconc exec-path (list elpy-binpath))

Loading…
Cancel
Save