From 67219564a3e6596c865120815e5ddabf779ff509 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 11 Apr 2023 15:44:25 -0400 Subject: [PATCH] add workspace that opens 'scratch' frame for quick notes 'off to the side' --- common/workspaces.el | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/common/workspaces.el b/common/workspaces.el index 12397e5..d712257 100644 --- a/common/workspaces.el +++ b/common/workspaces.el @@ -130,3 +130,14 @@ (interactive) (kmn/workspace-code-empty "~/src") ) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; scratch buffers frame - use 'scratch and prompts to manage as needed +(defun kmn/workspace-frame-scratch() + (interactive) + (let ((frame (make-frame))) + (select-frame-set-input-focus frame) + (delete-other-windows) + (scratch) + ) +)