Variable: tramp-gvfs-file-attributes-with-gvfs-info-regexp

tramp-gvfs-file-attributes-with-gvfs-info-regexp is a variable defined in tramp-gvfs.el.gz.

Value

"^[[:blank:]]*\\(\\(?:access::can-\\(?:execute\\|read\\|write\\)\\|name\\|owner::\\(?:group\\|user\\)\\|standard::\\(?:display-name\\|is-volatile\\|s\\(?:ize\\|ymlink-target\\)\\)\\|t\\(?:ime::\\(?:access\\|\\(?:chang\\|modifi\\)ed\\)\\|ype\\)\\|unix::\\(?:device\\|gid\\|inode\\|mode\\|nlink\\|uid\\)\\)\\):[[:blank:]]+\\(.*\\)$"

Documentation

Regexp to parse GVFS file attributes with gvfs-info.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
(defconst tramp-gvfs-file-attributes-with-gvfs-info-regexp
  (tramp-compat-rx
   bol (* blank) (group (regexp (regexp-opt tramp-gvfs-file-attributes)))
   ":" (+ blank) (group (* nonl)) eol)
  "Regexp to parse GVFS file attributes with `gvfs-info'.")