diff options
author | bd <bdunahu@operationnull.com> | 2024-06-04 19:58:28 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-06-04 19:58:28 -0600 |
commit | 6f59279e3b116f109a72dcbc85a05fb2e20201d1 (patch) | |
tree | ff80e7c75ff23c7614aab8ea56ab14aa997aceae /.config/emacs/modules/bd--windows.el | |
parent | 4ad40229062f5c451ecaa2c971096db5a7c4e4ef (diff) |
Swap noto-emoji for font-openmoji, (which does not crash?)
Diffstat (limited to '.config/emacs/modules/bd--windows.el')
-rw-r--r-- | .config/emacs/modules/bd--windows.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.config/emacs/modules/bd--windows.el b/.config/emacs/modules/bd--windows.el index b92eb1a..d14e325 100644 --- a/.config/emacs/modules/bd--windows.el +++ b/.config/emacs/modules/bd--windows.el @@ -37,6 +37,16 @@ dedicated buffer will never be automatically orphaned." (if dedicated "no longer " "") (buffer-name)))) +;; reading mode +(defun split-and-follow () + (interactive) + (delete-other-windows) + (split-window-horizontally) + (split-window-horizontally) + (balance-windows) + (other-window -1) + (follow-mode 1)) + ;; alpha (defun bd/clamp (lower-bound upper-bound value) (max lower-bound (min value upper-bound))) |