소스 검색

Move code

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

+ 11
- 12
emacs.el 파일 보기

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

(autoload-eval-lazily 'compile nil
(require 'ansi-color)
(add-hook 'compilation-filter-hook
(lambda ()
(let ((inhibit-read-only t))
(ansi-color-apply-on-region compilation-filter-start
(point)))))
(add-to-list 'compilation-error-regexp-alist
;; ansible-lint
'("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2)))

;; Workaround to avoid ensime error
(defvar ensime-mode-key-prefix nil)

@@ -1552,16 +1563,4 @@ This mode is a simplified version of `adoc-mode'."
(buffer-substring-no-properties (point-min) (point-max))))
))


(require 'ansi-color)
(require 'compile)
(add-hook 'compilation-filter-hook
(lambda ()
(let ((inhibit-read-only t))
(ansi-color-apply-on-region compilation-filter-start
(point)))))
(autoload-eval-lazily 'compile nil
(add-to-list 'compilation-error-regexp-alist
;; ansible-lint
'("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2)))
;;; emacs.el ends here

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