* GNU Free Documentation License:: The license for this documentation.
* Function Index:: @value{tramp} functions.
* Variable Index:: User options and variables.
+* Key Index:: Key bindings for @value{tramp} commands.
* Concept Index:: An item for each concept.
@detailmenu
@printindex vr
+@node Key Index
+@unnumbered Key Index
+@printindex ky
+
+
@node Concept Index
@unnumbered Concept Index
@printindex cp
(dired-advertise)
(revert-buffer)))))
-;; FIXME: See FIXME above about renaming this before Emacs 31.1.
+;; This function takes action, when `read-extended-command-predicate'
+;; is set to `command-completion-default-include-p'.
+(defun tramp-dired-buffer-command-completion-p (_symbol buffer)
+ "A predicate for Tramp interactive commands.
+They are completed by `M-x TAB' only in Dired buffers."
+ (declare (tramp-suppress-trace t))
+ (with-current-buffer buffer
+ (tramp-dired-buffer-p)))
;;;###autoload
(defun tramp-dired-find-file-with-sudo ()
- "Visit the file or directory named on this line as the superuser.
-
-By default this is done using the \"sudo\" Tramp method.
-YOu can customize `tramp-file-name-with-method' to change this.
-
-Interactively, with a prefix argument, prompt for a different method."
+ "In Dired, visit the file or directory named on this line.
+This is performed with \"sudo\" permissions."
+ ;; (declare (completion tramp-dired-buffer-command-completion-p))
(interactive)
(with-tramp-file-name-with-method
(find-file (tramp-file-name-with-sudo (dired-get-file-for-visit)))))
+;; `tramp-dired-buffer-command-completion-p' is not autoloaded, and this
+;; setting isn't either.
+(function-put
+ #'tramp-dired-find-file-with-sudo 'completion-predicate
+ #'tramp-dired-buffer-command-completion-p)
+
;;; Recompile on ELPA
;; This function takes action, when `read-extended-command-predicate'