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:
parent
7383bac3a3
commit
865773c04b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue