소스 검색

Add my-isortify

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

+ 13
- 3
emacs.el 파일 보기

@@ -1417,9 +1417,19 @@ found, otherwise returns nil."
(when (require 'with-venv nil t)
(with-venv-advice-add 'blacken-buffer)))

(with-eval-after-load 'isortify
(when (require 'with-venv nil t)
(with-venv-advice-add 'isortify-buffer)))
;; isortify-buffer breaks buffer when it contains japanese text
(defun my-isortify ()
(interactive)
(cl-assert buffer-file-name)
(cl-assert (not (buffer-modified-p)))
(with-venv
(call-process "python" ;; PROGRAM
nil ;; INFILE
nil ;; DESTINATION
nil ;; DISPLAY
"-m" "isort" buffer-file-name))
(message "isortify done")
(revert-buffer nil t))

;; https://github.com/lunaryorn/old-emacs-configuration/blob/master/lisp/flycheck-virtualenv.el
(defun my-set-venv-flycheck-executable-find ()


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