Variable: tramp-completion-file-name-regexp-separate
tramp-completion-file-name-regexp-separate is a variable defined in
tramp.el.gz.
Value
"\\`/\\(\\[[^]]*\\)?\\'"
Documentation
Value for tramp-completion-file-name-regexp for separate remoting.
See tramp-file-name-structure for more explanations.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defconst tramp-completion-file-name-regexp-separate
(concat
"\\`"
;; Allow the volume letter at the beginning of the path. See the
;; comment in `tramp-completion-file-name-regexp-default' for more
;; details.
(when (eq system-type 'windows-nt)
"\\(?:[[:alpha:]]:\\)?")
"/\\(\\[[^]]*\\)?\\'")
"Value for `tramp-completion-file-name-regexp' for separate remoting.
See `tramp-file-name-structure' for more explanations.")