Function: aw--make-backgrounds
aw--make-backgrounds is a byte-compiled function defined in
ace-window.el.
Signature
(aw--make-backgrounds WND-LIST)
Documentation
Create a dim background overlay for each window on WND-LIST.
Source Code
;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
(defun aw--make-backgrounds (wnd-list)
"Create a dim background overlay for each window on WND-LIST."
(when aw-background
(setq aw-overlays-back
(mapcar (lambda (w)
(let ((ol (make-overlay
(window-start w)
(window-end w)
(window-buffer w))))
(overlay-put ol 'face 'aw-background-face)
ol))
wnd-list))))