diff options
author | Chris Feng <chris.w.feng@gmail.com> | 2020-05-10T00·00+0000 |
---|---|---|
committer | Chris Feng <chris.w.feng@gmail.com> | 2020-05-10T00·00+0000 |
commit | c0931b5c6604d8816bcee1e4dc2c13a262cb93eb (patch) | |
tree | e01335fbce7b6e4d5a43d3e87e63c4fad5b9b429 | |
parent | 21a73419724fe642ad3affc12fb6e901e554a243 (diff) | |
parent | ce2625d050b1a4aa5815dc488880b85d0270d743 (diff) |
Merge branch 'medranocalvo/input-mode-change-hook' into externals/exwm
-rw-r--r-- | exwm-input.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/exwm-input.el b/exwm-input.el index 9ba3502a4da0..2d784073e77e 100644 --- a/exwm-input.el +++ b/exwm-input.el @@ -145,6 +145,10 @@ This value should always be overwritten.") (defvar exwm-input--event-hook nil "Hook to run when EXWM receives an event.") +(defvar exwm-input-input-mode-change-hook nil + "Hook to run when an input mode changes on an `exwm-mode' buffer. +Current buffer will be the `exwm-mode' buffer when this hook runs.") + (defvar exwm-workspace--current) (declare-function exwm-floating--do-moveresize "exwm-floating.el" (data _synthetic)) @@ -793,7 +797,8 @@ button event." (let ((buffer (exwm--id->buffer id))) (when buffer (with-current-buffer buffer - (setq exwm--input-mode 'line-mode)))))) + (setq exwm--input-mode 'line-mode) + (run-hooks 'exwm-input-input-mode-change-hook)))))) (defun exwm-input--release-keyboard (&optional id) "Ungrab all key events on window ID." @@ -810,7 +815,8 @@ button event." (let ((buffer (exwm--id->buffer id))) (when buffer (with-current-buffer buffer - (setq exwm--input-mode 'char-mode)))))) + (setq exwm--input-mode 'char-mode) + (run-hooks 'exwm-input-input-mode-change-hook)))))) ;;;###autoload (defun exwm-input-grab-keyboard (&optional id) |