소스 검색

Add my-scalafmt

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

+ 21
- 0
emacs.el 파일 보기

@@ -1084,6 +1084,27 @@ found, otherwise returns nil."
;; Include some extra modes
(require 'generic-x)

;; Derived from https://github.com/ensime/ensime-emacs/issues/591#issuecomment-291916753
(defun my-scalafmt ()
(interactive)
(cl-assert buffer-file-name)
(cl-assert (not (buffer-modified-p)))
(let* ((configdir (locate-dominating-file default-directory ".scalafmt.conf"))
(configoption (if configdir
(concat " --config "
(shell-quote-argument (expand-file-name configdir))
".scalafmt.conf"
)
""))
(str (concat "scalafmt -f "
(shell-quote-argument buffer-file-name)
configoption
" -i --exclude ensime")))
(message str)
(shell-command-to-string str))
(message "scalafmt done")
(revert-buffer nil t))

(when (fboundp 'web-mode)
(add-to-list 'auto-mode-alist
'("\\.html\\.j2\\'" . web-mode))


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