mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-23 21:17:59 +01:00
Re-grab global keys on keyboard update
* exwm-input.el (exwm-input--on-keysyms-update): New function for re-grabbing global keys. (exwm-input--init): Register it to XELB.
This commit is contained in:
parent
76b567dddb
commit
2b183f2212
1 changed files with 5 additions and 1 deletions
|
@ -127,6 +127,10 @@ ARGS are additional arguments to CALLBACK."
|
|||
(x-focus-frame (selected-frame))
|
||||
(select-window (selected-window))))))
|
||||
|
||||
(defun exwm-input--on-keysyms-update ()
|
||||
(let ((exwm-input--global-prefix-keys nil))
|
||||
(exwm-input--update-global-prefix-keys)))
|
||||
|
||||
(defun exwm-input--on-workspace-list-change ()
|
||||
"Run in `exwm-input--update-global-prefix-keys'."
|
||||
(dolist (f exwm-workspace--list)
|
||||
|
@ -702,7 +706,7 @@ Its usage is the same with `exwm-input-set-simulation-keys'."
|
|||
(defun exwm-input--init ()
|
||||
"Initialize the keyboard module."
|
||||
;; Refresh keyboard mapping
|
||||
(xcb:keysyms:init exwm--connection)
|
||||
(xcb:keysyms:init exwm--connection #'exwm-input--on-keysyms-update)
|
||||
;; Create the X window and intern the atom used to fetch timestamp.
|
||||
(setq exwm-input--timestamp-window (xcb:generate-id exwm--connection))
|
||||
(xcb:+request exwm--connection
|
||||
|
|
Loading…
Reference in a new issue