add workspace that opens 'scratch' frame for quick notes 'off to the side'

This commit is contained in:
KemoNine 2023-04-11 15:44:25 -04:00
parent 281ea9b221
commit 67219564a3
1 changed files with 11 additions and 0 deletions

View File

@ -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)
)
)