Function: aw-set-mode-line

aw-set-mode-line is a byte-compiled function defined in ace-window.el.

Signature

(aw-set-mode-line STR)

Documentation

Set mode line indicator to STR.

Source Code

;; Defined in ~/.emacs.d/elpa/ace-window-20220911.358/ace-window.el
(defun aw-set-mode-line (str)
  "Set mode line indicator to STR."
  (setq ace-window-mode str)
  (when (and aw-minibuffer-flag ace-window-mode)
    (message "%s" (string-trim-left str)))
  (force-mode-line-update))