Variable: tramp-keyboard-interactive-authentication-prompt-regexp
tramp-keyboard-interactive-authentication-prompt-regexp is a
customizable variable defined in tramp.el.gz.
Value
"-- Keyboard-interactive authentication prompts from server: ------------------[[:blank:]]*[\n
]*"
Documentation
Regexp matching keyboard-interactive authentication requests.
The regexp should match at end of buffer.
This variable was added, or its default value changed, in Emacs 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defcustom tramp-keyboard-interactive-authentication-prompt-regexp
;; This shouldn't be needed. But sometimes, this message happens
;; after the first request, although it shall be prior any
;; authentication request.
(rx "-- Keyboard-interactive authentication prompts "
"from server: ------------------" (* blank) (* (any "\r\n")))
"Regexp matching keyboard-interactive authentication requests.
The regexp should match at end of buffer."
:version "31.1"
:type 'regexp)