From 07d5cc8124dba7fa9fe4756f414c5637766ece9e Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 25 Sep 2025 03:30:12 -0400 Subject: [PATCH] nit(tramp): fix comment about ssh>scp --- modules/emacs/tramp/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/emacs/tramp/config.el b/modules/emacs/tramp/config.el index cb4b7f4f0..34cab7048 100644 --- a/modules/emacs/tramp/config.el +++ b/modules/emacs/tramp/config.el @@ -17,8 +17,9 @@ tramp-backup-directory-alist backup-directory-alist tramp-auto-save-directory (concat doom-cache-dir "tramp-autosave/")) + ;; The ssh method is faster than scp (the default) on Windows (unless (featurep :system 'windows) - (setq tramp-default-method "ssh"))) ; faster than scp on Windows + (setq tramp-default-method "ssh"))) ;; See https://coredumped.dev/2025/06/18/making-tramp-go-brrrr.