Skip to content

Commit

Permalink
[fu] init-window-manager avoid name collision
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Nov 20, 2024
1 parent 57e2c86 commit bf7cd84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/init-window-manager.el
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
;;
;; Functions:
;;
;; `toggle-window-dedicated' makes a window dedicated or not (it prevents
;; `exordium-toggle-window-dedicated' makes a window dedicated or not (it prevents
;; Emacs from reusing the window to display another buffer).


Expand Down Expand Up @@ -98,7 +98,7 @@



(defun toggle-window-dedicated ()
(defun exordium-toggle-window-dedicated ()
"Toggle whether the current active window is dedicated or not."
(interactive)
(let ((window (get-buffer-window (current-buffer))))
Expand All @@ -109,7 +109,7 @@
(current-buffer))))

;;; Note: apparently there is no Pause key on an Apple keyboard...
(define-key global-map [pause] 'toggle-window-dedicated)
(define-key global-map [pause] 'exordium-toggle-window-dedicated)


;;; Ace-window
Expand Down

0 comments on commit bf7cd84

Please sign in to comment.