commit bb391074e5645029b382792758d7797e382001f6 parent f022003fe03bcaf370ce25bddfbf45f583ccdf58 Author: Vincent Demeester <vincent@sbr.pm> Date: Mon, 1 Jun 2020 13:36:41 +0200 config-compile.el: add comint-password prompt support Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | tools/emacs/config/config-compile.el | | | 25 | +++++++++++++++++++++++++ |
1 file changed, 25 insertions(+), 0 deletions(-)
diff --git a/tools/emacs/config/config-compile.el b/tools/emacs/config/config-compile.el @@ -37,6 +37,31 @@ ;; Show three lines of context around the current message compilation-context-lines 3 ) + (add-hook 'comint-output-filter-functions + 'comint-watch-for-password-prompt) + (setq-default comint-password-prompt-regexp + (concat + "\\(" + "^Enter passphrase.*:" + "\\|" + "^Repeat passphrase.*:" + "\\|" + "[Pp]assword for '[a-z0-9_-.]+':" + "\\|" + "\\[sudo\\] [Pp]assword for [a-z0-9_-.]+:" + "\\|" + "[a-zA-Z0-9]'s password:" + "\\|" + "^[Pp]assword:" + "\\|" + "^[Pp]assword (again):" + "\\|" + ".*\\([Ww]ork\\|[Pp]ersonal\\).* password:" + "\\|" + "Password for '([^()]+)' GNOME keyring" + "\\|" + "Password for 'http.*github.*':" + "\\)")) (add-hook 'compilation-filter-hook #'vde/colorize-compilation-buffer) (add-hook 'compilation-mode-hook #'vde/goto-address-mode)) ;; -UseCompile