add workspace that opens 'scratch' frame for quick notes 'off to the side'
This commit is contained in:
parent
281ea9b221
commit
67219564a3
|
@ -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)
|
||||
)
|
||||
)
|
||||
|
|
Reference in a new issue