소스 검색

Fix error of with-venv absence

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

+ 6
- 5
emacs.el 파일 보기

@@ -1624,11 +1624,12 @@ ORIG-FUNC is the target function, and ARGS is the argument when it is called."
(defun my-set-venv-flycheck-executable-find ()
"Set flycheck executabie find."
(interactive)
(set-variable 'flycheck-executable-find
'(lambda (e)
(with-venv
(executable-find e)))
t))
(when (fboundp 'with-venv)
(set-variable 'flycheck-executable-find
'(lambda (e)
(with-venv
(executable-find e)))
t)))

(defun my-update-flycheck-flake8-error-level-alist ()
"Update `flycheck-flake8-error-level-alist'."


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