瀏覽代碼

Add regexp for pydocstyle

master
10sr 5 年之前
父節點
當前提交
c581fd73c1
簽署人: 10sr GPG Key ID: 7BEC428194130EB2
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      emacs.el

+ 5
- 1
emacs.el 查看文件

@@ -1166,7 +1166,11 @@ found, otherwise returns nil."
(point)))))
(add-to-list 'compilation-error-regexp-alist
;; ansible-lint
'("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2)))
'("^\\([^ \n]+\\):\\([0-9]+\\)$" 1 2))
(add-to-list 'compilation-error-regexp-alist
;; pydocstyle
'("^\\([^ \n]+\\):\\([0-9]+\\) " 1 2))
)

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


Loading…
取消
儲存