refactor(3p/exwm): Remove `exwm-input--skip-buffer-list-update'
* exwm-input.el: (exwm-input--on-buffer-list-update): Stop checking `exwm-input--skip-buffer-list-update'; it's no longer needed now that we keep track of the last selected window and buffer. (exwm-input--skip-buffer-list-update): Remove variable. * exwm-manage.el (exwm-manage--manage-window): Remove binding of `exwm-input--skip-buffer-list-update'. Imported from https://github.com/ch11ng/exwm/pull/737 Change-Id: Iacbdb8b607a82352e5b55509b0aba93f1d87a9f2 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3562 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
e74f12f85b
commit
c6ad2b638e
2 changed files with 2 additions and 9 deletions
4
third_party/exwm/exwm-input.el
vendored
4
third_party/exwm/exwm-input.el
vendored
|
|
@ -117,9 +117,6 @@ defined in `exwm-mode-map' here."
|
|||
|
||||
(defvar exwm-input--simulation-keys nil "Simulation keys in line-mode.")
|
||||
|
||||
(defvar exwm-input--skip-buffer-list-update nil
|
||||
"Skip the upcoming 'buffer-list-update'.")
|
||||
|
||||
(defvar exwm-input--temp-line-mode nil
|
||||
"Non-nil indicates it's in temporary line-mode for char-mode.")
|
||||
|
||||
|
|
@ -315,7 +312,6 @@ ARGS are additional arguments to CALLBACK."
|
|||
(let* ((win (selected-window))
|
||||
(buf (window-buffer win)))
|
||||
(when (and (not (exwm-workspace--client-p))
|
||||
(not exwm-input--skip-buffer-list-update)
|
||||
(not (and (eq exwm-input--update-focus-window win)
|
||||
(eq exwm-input--update-focus-window-buffer buf))))
|
||||
(exwm--log "selected-window=%S current-buffer=%S" win buf)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue