mirror of
https://github.com/doomemacs/doomemacs
synced 2025-09-26 16:41:04 -05:00
The ssh-deploy-root-remote check isn't enough (they may be set file/dir locally before the package is loaded).
51 lines
2.2 KiB
EmacsLisp
51 lines
2.2 KiB
EmacsLisp
;;; tools/upload/config.el -*- lexical-binding: t; -*-
|
|
|
|
(use-package! ssh-deploy
|
|
:commands (ssh-deploy-upload-handler
|
|
ssh-deploy-upload-handler-forced
|
|
ssh-deploy-diff-handler
|
|
ssh-deploy-browse-remote-handler
|
|
ssh-deploy-remote-changes-handler)
|
|
:init
|
|
(setq ssh-deploy-revision-folder (file-name-concat doom-cache-dir "ssh-revisions/")
|
|
ssh-deploy-on-explicit-save 1
|
|
ssh-deploy-automatically-detect-remote-changes nil)
|
|
|
|
;; Forward-declare these as safe file/dir-local variables in case files set
|
|
;; them before ssh-deploy is loaded.
|
|
(dolist (sym '((ssh-deploy-root-local . stringp)
|
|
(ssh-deploy-root-remote . stringp)
|
|
(ssh-deploy-script . functionp)
|
|
(ssh-deploy-on-explicit-save . booleanp)
|
|
(ssh-deploy-force-on-explicit-save . booleanp)
|
|
(ssh-deploy-async . booleanp)
|
|
(ssh-deploy-exclude-list . listp)))
|
|
(put (car sym) 'safe-local-variable (cdr sym)))
|
|
|
|
;; Respect `ssh-deploy-on-explicit-save' if `ssh-deploy-root-remote' has
|
|
;; changed since the buffer was opened.
|
|
(add-hook! 'after-save-hook
|
|
(defun +upload-init-after-save-h ()
|
|
(when (and (bound-and-true-p ssh-deploy-root-remote)
|
|
(require 'ssh-deploy nil t)
|
|
(integerp ssh-deploy-on-explicit-save)
|
|
(> ssh-deploy-on-explicit-save 0))
|
|
(ssh-deploy-upload-handler ssh-deploy-force-on-explicit-save)
|
|
(when (or ssh-deploy-root-remote
|
|
ssh-deploy-root-local)
|
|
(ssh-deploy-line-mode +1)))))
|
|
|
|
;; Enable ssh-deploy if variables are set, and check for changes on open file
|
|
;; (if possible)
|
|
(add-hook! 'find-file-hook
|
|
(defun +upload-init-find-file-h ()
|
|
(when (and (bound-and-true-p ssh-deploy-root-remote)
|
|
(require 'ssh-deploy nil t))
|
|
(unless ssh-deploy-root-local
|
|
(setq ssh-deploy-root-local (doom-project-root)))
|
|
(when ssh-deploy-automatically-detect-remote-changes
|
|
(ssh-deploy-remote-changes-handler))
|
|
(when (or ssh-deploy-root-remote
|
|
ssh-deploy-root-local)
|
|
(ssh-deploy-line-mode +1))))))
|