Browse Source

Move code

master
10sr 5 years ago
parent
commit
4b95427244
Signed by: 10sr GPG Key ID: 7BEC428194130EB2
1 changed files with 11 additions and 12 deletions
  1. +11
    -12
      emacs.el

+ 11
- 12
emacs.el View File

@@ -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

Loading…
Cancel
Save