Variable: tramp-distrobox-no-container-regexp
tramp-distrobox-no-container-regexp is a customizable variable defined
in tramp-container.el.gz.
Value
"^Error:.+no such container.*\nCreate it now, out of image [^[:blank:]]+\\? \\[Y/n]:[[:blank:]]*"
Documentation
Regexp matching missing distrobox error message.
The regexp should match at end of buffer.
This variable was added, or its default value changed, in Emacs 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-container.el.gz
(defcustom tramp-distrobox-no-container-regexp
(rx bol "Error:" (1+ nonl) "no such container" (0+ nonl) "\n"
"Create it now, out of image " (+ (not blank)) "? [Y/n]:" (* blank))
"Regexp matching missing distrobox error message.
The regexp should match at end of buffer."
:group 'tramp
:version "30.1"
:type 'regexp)