Variable: tramp-gvfs-file-attributes-with-gvfs-ls-regexp
tramp-gvfs-file-attributes-with-gvfs-ls-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\\)\\)\\)=\\(.+?\\)"
Documentation
Regexp to parse GVFS file attributes with gvfs-ls.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
(defconst tramp-gvfs-file-attributes-with-gvfs-ls-regexp
(tramp-compat-rx
blank (group (regexp (regexp-opt tramp-gvfs-file-attributes)))
"=" (group (+? nonl)))
"Regexp to parse GVFS file attributes with `gvfs-ls'.")