spacemacs/layers/+spacemacs/spacemacs-purpose/funcs.el
2018-01-04 02:00:25 -05:00

66 lines
2.5 KiB
EmacsLisp
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;;; funcs.el --- Spacemacs Purpose Layer functions File
;;
;; Copyright (c) 2012-2018 Sylvain Benner & Contributors
;;
;; Author: Bar Magal
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; eyebrowse integration
(defun spacemacs/window-purpose-sync-eyebrowse ()
"Synchronize window-purpose layer with eyebrowse.
Set `eyebrowse-new-workspace' value depending on the state of `purpose-mode'."
(defvar spacemacs--window-purpose-eyebrowse-new-workspace
eyebrowse-new-workspace
"Internal backup of `eyebrowse-new-workspace'.")
(require 'window-purpose)
(if purpose-mode
(setq eyebrowse-new-workspace #'spacemacs//window-purpose-new-workspace)
(setq eyebrowse-new-workspace
spacemacs--window-purpose-eyebrowse-new-workspace)))
(defun spacemacs//window-purpose-new-workspace ()
"Create a new eyebrowse workspace.
Replacement for `eyebrowse-new-workspace' that handles purpose-dedicated
windows correctly."
;; call original `eyebrowse-new-workspace' (partially copied from
;; `eyebrowse-switch-to-window-config')
(cond
((stringp spacemacs--window-purpose-eyebrowse-new-workspace)
(switch-to-buffer (get-buffer-create
spacemacs--window-purpose-eyebrowse-new-workspace)))
((functionp spacemacs--window-purpose-eyebrowse-new-workspace)
(funcall spacemacs--window-purpose-eyebrowse-new-workspace))
(t (switch-to-buffer "*scratch*")))
;; in case opening the new buffer splitted the frame (e.g.
;; `eyebrowse-switch-to-window-config' was called from a purpose-dedicated
;; buffer)
(delete-other-windows))
;; Popwin integration
(defun spacemacs/window-purpose-sync-popwin ()
"Synchronize window-purpose layer with popwin.
Enable or disable advices to popwin, according to the state of `purpose-mode'."
(require 'window-purpose)
(if purpose-mode
(progn
(ad-enable-advice 'popwin:create-popup-window
'before 'window-purpose/save-dedicated-windows)
(ad-enable-advice 'popwin:create-popup-window
'after 'window-purpose/restore-dedicated-windows)
(ad-update 'popwin:create-popup-window)
(ad-activate 'popwin:create-popup-window))
(ad-disable-advice 'popwin:create-popup-window
'before 'window-purpose/save-dedicated-windows)
(ad-disable-advice 'popwin:create-popup-window
'after 'window-purpose/restore-dedicated-windows)
(ad-update 'popwin:create-popup-window)))