Fix tramp history file path

The variable 'tramp-persistency-file-name' is supposed to be a filename,
currently it is pointing to a directory which means tramp will not be
able to save and reuse connection information.
This commit is contained in:
Kalle Lindqvist 2016-04-23 20:06:20 +02:00 committed by Eivind Fonn
parent 7383bac3a3
commit 865773c04b

View file

@ -188,7 +188,7 @@ It runs `tabulated-list-revert-hook', then calls `tabulated-list-print'."
eval-expression-print-level nil)
;; cache files
(setq tramp-persistency-file-name (concat spacemacs-cache-directory "tramp/"))
(setq tramp-persistency-file-name (concat spacemacs-cache-directory "tramp"))
;; seems pointless to warn. There's always undo.
(put 'narrow-to-region 'disabled nil)