diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2023-11-17 18:16:58 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2023-11-17 18:16:58 +0100 |
commit | 7b0e07c41ae92d4cb139b1c47ce9debc37cfffcb (patch) | |
tree | 41071907b620d19187a9f67e24517ab87b32ba10 /lisp/net/tramp-smb.el | |
parent | 232a57a3e32f8dc425887f6edda172255b265de3 (diff) | |
download | emacs-7b0e07c41ae92d4cb139b1c47ce9debc37cfffcb.tar.gz emacs-7b0e07c41ae92d4cb139b1c47ce9debc37cfffcb.tar.bz2 emacs-7b0e07c41ae92d4cb139b1c47ce9debc37cfffcb.zip |
Make Tramp aware of completion-regexp-list (don't merge)
* lisp/net/tramp.el (tramp-skeleton-file-name-all-completions):
New defmacro.
(tramp-completion-handle-file-name-all-completions):
* lisp/net/tramp-adb.el (tramp-adb-handle-file-name-all-completions):
* lisp/net/tramp-crypt.el (tramp-crypt-handle-file-name-all-completions):
* lisp/net/tramp-fuse.el (tramp-fuse-handle-file-name-all-completions):
* lisp/net/tramp-gvfs.el (tramp-gvfs-handle-file-name-all-completions):
* lisp/net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
* lisp/net/tramp-smb.el (tramp-smb-handle-file-name-all-completions):
* lisp/net/tramp-sudoedit.el
(tramp-sudoedit-handle-file-name-all-completions): Use it.
Diffstat (limited to 'lisp/net/tramp-smb.el')
-rw-r--r-- | lisp/net/tramp-smb.el | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lisp/net/tramp-smb.el b/lisp/net/tramp-smb.el index 0ba24352a3d..5c385641cf8 100644 --- a/lisp/net/tramp-smb.el +++ b/lisp/net/tramp-smb.el @@ -987,20 +987,19 @@ PRESERVE-UID-GID and PRESERVE-EXTENDED-ATTRIBUTES are completely ignored." ;; files. (defun tramp-smb-handle-file-name-all-completions (filename directory) "Like `file-name-all-completions' for Tramp files." - (tramp-compat-ignore-error file-missing + (tramp-skeleton-file-name-all-completions filename directory (all-completions filename (when (file-directory-p directory) (with-parsed-tramp-file-name (expand-file-name directory) nil (with-tramp-file-property v localname "file-name-all-completions" - (delete-dups - (mapcar - (lambda (x) - (list - (if (tramp-compat-string-search "d" (nth 1 x)) - (file-name-as-directory (nth 0 x)) - (nth 0 x)))) - (tramp-smb-get-file-entries directory))))))))) + (mapcar + (lambda (x) + (list + (if (tramp-compat-string-search "d" (nth 1 x)) + (file-name-as-directory (nth 0 x)) + (nth 0 x)))) + (tramp-smb-get-file-entries directory)))))))) (defun tramp-smb-handle-file-system-info (filename) "Like `file-system-info' for Tramp files." |