Calling this pivotal macro "def-package!" has frequently been a source of confusion. It is a thin wrapper around use-package, and it should be obvious that it is so. For this reason, and to match the naming convention used with other convenience macros/wrappers, it is now use-package!. Also changes def-package-hook! -> use-package-hook! The old macros are now marked obsolete and will be removed when straight integration is merged.
51 lines
2.1 KiB
EmacsLisp
51 lines
2.1 KiB
EmacsLisp
;;; tools/upload/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Uses `ssh-deploy' to map a local folder to a remote one. Set
|
|
;; `ssh-deploy-root-remote' and `ssh-deploy-root-local' in a .dir-locals.el file
|
|
;; to establish this mapping.
|
|
;;
|
|
;; Example:
|
|
;; ((nil . ((ssh-deploy-root-local . "/local/path/to/project")
|
|
;; (ssh-deploy-root-remote . "/ssh:user@server:/remote/project/")
|
|
;; (ssh-deploy-on-explicity-save . t))))
|
|
;;
|
|
;; Note: `ssh-deploy-root-local' is optional, and will resort to
|
|
;; `doom-project-root' if unspecified.
|
|
|
|
(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 (concat doom-cache-dir "ssh-revisions/")
|
|
ssh-deploy-on-explicit-save t
|
|
ssh-deploy-automatically-detect-remote-changes nil)
|
|
|
|
;; Make these safe as file-local variables
|
|
(dolist (sym '((ssh-deploy-root-local . stringp)
|
|
(ssh-deploy-root-remote . stringp)
|
|
(ssh-deploy-script . functionp)
|
|
(ssh-deploy-on-explicitly-save . booleanp)
|
|
(ssh-deploy-async . booleanp)
|
|
(ssh-deploy-exclude-list . listp)))
|
|
(put (car sym) 'safe-local-variable (cdr sym)))
|
|
|
|
;; Maybe auto-upload on save
|
|
(defun +upload|init-after-save ()
|
|
(when (and (bound-and-true-p ssh-deploy-root-remote)
|
|
ssh-deploy-on-explicit-save)
|
|
(ssh-deploy-upload-handler)))
|
|
(add-hook 'after-save-hook #'+upload|init-after-save)
|
|
|
|
;; Enable ssh-deploy if variables are set, and check for changes on open file
|
|
;; (if possible)
|
|
(defun +upload|init-find-file ()
|
|
(when (bound-and-true-p ssh-deploy-root-remote)
|
|
(require 'ssh-deploy)
|
|
(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))))
|
|
(add-hook 'find-file-hook #'+upload|init-find-file))
|