From 2945e7597761ccf7b1d0b6336c74fab0f8f74245 Mon Sep 17 00:00:00 2001 From: 10sr <8.slashes@gmail.com> Date: Fri, 10 Aug 2018 12:52:24 +0900 Subject: [PATCH] Add jump config for ansible-lint --- emacs.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/emacs.el b/emacs.el index b19ac1d..f56abe5 100644 --- a/emacs.el +++ b/emacs.el @@ -1560,4 +1560,8 @@ This mode is a simplified version of `adoc-mode'." (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