We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
non-essential
tramp-completion-mode
1 parent b7c93fe commit 35e6d96Copy full SHA for 35e6d96
cider.el
@@ -706,7 +706,10 @@ gets associated with it."
706
(defun cider--ssh-hosts ()
707
"Retrieve all ssh host from local configuration files."
708
(seq-map (lambda (s) (list (replace-regexp-in-string ":$" "" s)))
709
- (let ((tramp-completion-mode t))
+ ;; `tramp-completion-mode' is obsoleted in 26
710
+ (cl-progv (if (version< emacs-version "26")
711
+ '(tramp-completion-mode)
712
+ '(non-essential)) '(t)
713
(tramp-completion-handle-file-name-all-completions "" "/ssh:"))))
714
715
(defun cider--completing-read-host (hosts)
0 commit comments