Explorar el Código

Add regexp for pydocstyle

master
10sr hace 5 años
padre
commit
c581fd73c1
Firmado por: 10sr ID de clave GPG: 7BEC428194130EB2
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      emacs.el

+ 5
- 1
emacs.el Ver fichero

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


Cargando…
Cancelar
Guardar