Skip to content

Commit f46a5f9

Browse files
author
Dave Abrahams
authored
[emacs support] Keep remote directories out of load-path
That can lead to frustratingly persistent attempts to reconnect to remote servers you're done with!
1 parent 655b6e3 commit f46a5f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.dir-locals.el

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
(eval let*
66
((x (dir-locals-find-file default-directory))
77
(this-directory (if (listp x) (car x) (file-name-directory x))))
8-
(unless (featurep 'swift-project-settings)
8+
(unless (or (featurep 'swift-project-settings)
9+
(tramp-tramp-file-p this-directory))
910
(add-to-list 'load-path
1011
(concat this-directory "utils")
1112
:append)

0 commit comments

Comments
 (0)