Compare commits
3 commits
fd2e80c231
...
79416dab24
Author | SHA1 | Date | |
---|---|---|---|
KemoNine | 79416dab24 | ||
KemoNine | 800b4fdcd4 | ||
KemoNine | f591417791 |
|
@ -41,6 +41,27 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
; open text-mode scratch in right side window
|
||||||
|
(defun kmn/scratch-text-on-right (&optional dir_path)
|
||||||
|
(defvar parameters
|
||||||
|
'(window-parameters . ((no-other-window . t)
|
||||||
|
(no-delete-other-windows . t))))
|
||||||
|
|
||||||
|
(setq fit-window-to-buffer-horizontally t)
|
||||||
|
(setq window-resize-pixelwise t)
|
||||||
|
|
||||||
|
"Display `default-directory' in side window on left, hiding details."
|
||||||
|
(interactive)
|
||||||
|
(let ((buffer (scratch 'text-mode)))
|
||||||
|
(display-buffer-in-side-window
|
||||||
|
buffer `((side . right) (slot . -1)
|
||||||
|
(window-width . fit-window-to-buffer)
|
||||||
|
, parameters)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; quick reference notes as a pop up window
|
; quick reference notes as a pop up window
|
||||||
(defun kmn/popwin-quick-ref ()
|
(defun kmn/popwin-quick-ref ()
|
||||||
|
|
|
@ -138,6 +138,6 @@
|
||||||
(let ((frame (make-frame)))
|
(let ((frame (make-frame)))
|
||||||
(select-frame-set-input-focus frame)
|
(select-frame-set-input-focus frame)
|
||||||
(delete-other-windows)
|
(delete-other-windows)
|
||||||
(scratch)
|
(scratch 'text-mode)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
@ -168,7 +168,7 @@
|
||||||
)
|
)
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
(when (not kmn/is-dayjob)
|
(when kmn/is-dayjob
|
||||||
(setq org-capture-templates '(
|
(setq org-capture-templates '(
|
||||||
("d" "TODO (Main)" entry
|
("d" "TODO (Main)" entry
|
||||||
(file "~/org/_todo.org")
|
(file "~/org/_todo.org")
|
||||||
|
@ -184,5 +184,12 @@
|
||||||
:immediate-finish "f"
|
:immediate-finish "f"
|
||||||
:jump-to-captured "t"
|
:jump-to-captured "t"
|
||||||
)
|
)
|
||||||
|
("p" "Deployment" entry
|
||||||
|
(file "~/org/_todo.org")
|
||||||
|
(file "~/org/template_deploy.org")
|
||||||
|
:prepend t
|
||||||
|
:immediate-finish "f"
|
||||||
|
:jump-to-captured "t"
|
||||||
|
)
|
||||||
))
|
))
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue