Variable: tramp-actions-copy-out-of-band

tramp-actions-copy-out-of-band is a variable defined in tramp-sh.el.gz.

Value

((tramp-password-prompt-regexp tramp-action-password)
 (tramp-wrong-passwd-regexp tramp-action-permission-denied)
 (tramp-copy-failed-regexp tramp-action-permission-denied)
 (tramp-security-key-confirm-regexp tramp-action-show-and-confirm-message)
 (tramp-process-alive-regexp tramp-action-out-of-band))

Documentation

List of pattern/action pairs.

This list is used for copying/renaming with out-of-band methods.

See tramp-actions-before-shell for more info.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
(defconst tramp-actions-copy-out-of-band
  '((tramp-password-prompt-regexp tramp-action-password)
    (tramp-wrong-passwd-regexp tramp-action-permission-denied)
    (tramp-copy-failed-regexp tramp-action-permission-denied)
    (tramp-security-key-confirm-regexp tramp-action-show-and-confirm-message)
    (tramp-process-alive-regexp tramp-action-out-of-band))
  "List of pattern/action pairs.
This list is used for copying/renaming with out-of-band methods.

See `tramp-actions-before-shell' for more info.")