mirror of
https://github.com/correl/doom-modeline.git
synced 2024-11-23 19:19:50 +00:00
Refresh the mode-line forcedly after switching frames.
This commit is contained in:
parent
94ddb2f68b
commit
62f48c062e
2 changed files with 4 additions and 1 deletions
|
@ -441,6 +441,9 @@ If the actual char height is larger, it respects the actual char height.")
|
||||||
(add-hook 'after-make-frame-functions #'doom-modeline-set-selected-window)
|
(add-hook 'after-make-frame-functions #'doom-modeline-set-selected-window)
|
||||||
(add-hook 'delete-frame-functions #'doom-modeline-set-selected-window)
|
(add-hook 'delete-frame-functions #'doom-modeline-set-selected-window)
|
||||||
(advice-add #'handle-switch-frame :after #'doom-modeline-set-selected-window)
|
(advice-add #'handle-switch-frame :after #'doom-modeline-set-selected-window)
|
||||||
|
(advice-add #'handle-switch-frame :after #'(lambda (&rest _)
|
||||||
|
"Rever the current buffer."
|
||||||
|
(ignore-errors (revert-buffer t t))))
|
||||||
(with-no-warnings
|
(with-no-warnings
|
||||||
(cond ((not (boundp 'after-focus-change-function))
|
(cond ((not (boundp 'after-focus-change-function))
|
||||||
(add-hook 'focus-in-hook #'doom-modeline-set-selected-window)
|
(add-hook 'focus-in-hook #'doom-modeline-set-selected-window)
|
||||||
|
|
|
@ -1656,7 +1656,7 @@ mouse-1: Reload to start server")
|
||||||
(define-key map [mode-line mouse-1]
|
(define-key map [mode-line mouse-1]
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(revert-buffer t t)))))
|
(ignore-errors (revert-buffer t t))))))
|
||||||
map)))))
|
map)))))
|
||||||
(add-hook 'lsp-mode-hook #'doom-modeline-update-lsp)
|
(add-hook 'lsp-mode-hook #'doom-modeline-update-lsp)
|
||||||
(add-hook 'lsp-after-uninitialized-hook #'doom-modeline-update-lsp)
|
(add-hook 'lsp-after-uninitialized-hook #'doom-modeline-update-lsp)
|
||||||
|
|
Loading…
Reference in a new issue