Variable: tramp-fingerprint-prompt-regexp
tramp-fingerprint-prompt-regexp is a customizable variable defined in
tramp.el.gz.
Value
"\\(?:Place your \\(?:\\(?:finger o\\(?:n the reader agai\\)?\\|\\(?:left \\(?:index finger\\|little finger\\|middle finger\\|ring finger\\|thumb\\)\\|right \\(?:index finger\\|little finger\\|middle finger\\|ring finger\\|thumb\\)\\) o\\)n\\)\\|Remove your finger, and try swiping your finger again\\|Swipe \\(?:was too short, try again\\|your \\(?:finger a\\(?:cross\\|gain\\)\\|\\(?:left \\(?:index finger\\|little finger\\|middle finger\\|ring finger\\|thumb\\)\\|right \\(?:index finger\\|little finger\\|middle finger\\|ring finger\\|thumb\\)\\) across\\)\\)\\|Your finger was not centred, try swiping your finger again\\).*[\n
]*"
Documentation
Regexp matching fingerprint prompts.
The regexp should match at end of buffer.
This variable was added, or its default value changed, in Emacs 30.2.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
;; <https://gitlab.freedesktop.org/libfprint/fprintd/-/blob/master/pam/fingerprint-strings.h?ref_type=heads>
(defcustom tramp-fingerprint-prompt-regexp
(rx (| "Place your finger on"
"Swipe your finger across"
"Place your left thumb on"
"Swipe your left thumb across"
"Place your left index finger on"
"Swipe your left index finger across"
"Place your left middle finger on"
"Swipe your left middle finger across"
"Place your left ring finger on"
"Swipe your left ring finger across"
"Place your left little finger on"
"Swipe your left little finger across"
"Place your right thumb on"
"Swipe your right thumb across"
"Place your right index finger on"
"Swipe your right index finger across"
"Place your right middle finger on"
"Swipe your right middle finger across"
"Place your right ring finger on"
"Swipe your right ring finger across"
"Place your right little finger on"
"Swipe your right little finger across"
"Place your finger on the reader again"
"Swipe your finger again"
"Swipe was too short, try again"
"Your finger was not centred, try swiping your finger again"
"Remove your finger, and try swiping your finger again")
(* nonl) (* (any "\r\n")))
"Regexp matching fingerprint prompts.
The regexp should match at end of buffer."
:version "30.2"
:type 'regexp)