diff options
author | bd <bdunahu@gmail.com> | 2023-12-30 22:06:34 -0700 |
---|---|---|
committer | bd <bdunahu@gmail.com> | 2023-12-30 22:06:34 -0700 |
commit | cd470a45060e2ebe292dc35ba84f2f503b1c3504 (patch) | |
tree | 3bbd9ec415c83a7a6325dea81e67a20fc5af6508 /.config/emacs/init.el | |
parent | d32d588ecb00b11a1dfda3880b4d66cd5b38a33d (diff) |
Many quality-of-life changes to EXWM, some modeline changes.
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index b06bde0..79416e6 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -31,17 +31,6 @@ "Returns non-nil if NAME matches the name of an existing buffer" (try-completion name (mapcar #'buffer-name (buffer-list)))) -(defun toggle-current-window-dedication () - "Adds or revokes dedicated window status from a buffer. A -dedicated buffer will never be automatically orphaned." - (interactive) - (let* ((window (selected-window)) - (dedicated (window-dedicated-p window))) - (set-window-dedicated-p window (not dedicated)) - (message "Window %sdedicated to %s" - (if dedicated "no longer " "") - (buffer-name)))) - (defun rip-video () "If region, open SEARCH with mpv in --full-screen. Else, open URL at point." |